Monthly Archives: June 2022

CSS

Basic CSS: CSS Introduction CSS Syntax CSS Selectors How To Add CSS CSS Comments CSS Colors CSS Backgrounds CSS Borders CSS Margins CSS Padding CSS Height, Width and Max-width CSS Box Model CSS Outline CSS Text CSS Fonts CSS Icons CSS Links CSS Lists CSS Tables CSS Layout – The display Property CSS Layout – width and max-width CSS Layout – The position Property CSS Layout – The z-index Property CSS Layout – Overflow CSS Layout – float and clear CSS Layout –… Read More »

Category: CSS

HTML Video| How to upload YouTube Videos

The easiest way to play videos in HTML, is to use YouTube. Struggling with Video Formats? Converting videos to different formats can be difficult and time-consuming. An easier solution is to let YouTube play the videos in your web page. YouTube Video Id YouTube will display an id (like tgbNymZ7vqY), when you save (or play)… Read More »

HTML Audio| How to upload in web page?

The HTML <audio> element is used to play an audio file on a web page. The HTML <audio> Element To play an audio file in HTML, use the <audio> element: Example <!DOCTYPE html> <html> <body> <audio controls>  <source src=”demo.ogg” type=”audio/ogg”>  <source src=”demo.mp3″ type=”audio/mpeg”> Your browser does not support the audio element. </audio> </body> </html> HTML Audio – How It… Read More »

How to upload Video in HTML

The HTML <video> element is used to show a video on a web page. The HTML <video> Element To show a video in HTML, use the <video> element: Example <!DOCTYPE html> <html> <body> <video width=”320″ height=”240″ controls>  <source src=”movie.mp4″ type=”video/mp4″>  <source src=”movie.ogg” type=”video/ogg”> Your browser does not support the video tag. </video> </body> </html> ​ ​ How it Works… Read More »

HTML Multimedia

Multimedia on the web is sound, music, videos, movies, and animations. What is Multimedia? Multimedia comes in many different formats. It can be almost anything you can hear or see, like images, music, sound, videos, records, films, animations, and more. Web pages often contain multimedia elements of different types and formats. Browser Support The first… Read More »

HTML Input form* Attributes

This chapter describes the different form* attributes for the HTML <input> element. The form Attribute The input form attribute specifies the form the <input> element belongs to. The value of this attribute must be equal to the id attribute of the <form> element it belongs to. Example An input field located outside of the HTML form (but still a part of the form):… Read More »

Working with Tabs | Tabs In MS PowerPoint

Ribbon and Tabs Ribbon is located on the top of the PowerPoint window just below the Title bar. It is made up of seven tabs; Home, Insert, Design, Animations, Slide Show, Review and View. Each tab is divided into groups of related commands that are displayed on the Ribbon. To view additional commands of a… Read More »