Category Archives: HTML

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 »

HTML Input Attributes

This chapter describes the different attributes for the HTML <input> element. The value Attribute The input value attribute specifies an initial value for an input field: Example Input fields with initial (default) values: <!DOCTYPE html> <html> <body> <h1>The input value attribute</h1> <p>The value attribute specifies an initial value for an input field:</p> <form action=”/action_page.php”>  <label for=”fname”>First name:</label><br>  <input type=”text”… Read More »

HTML Input Types

This chapter describes the different types for the HTML <input> element. HTML <input> type Attribute Here are the different input types you can use in HTML: <input type=”button”> <input type=”checkbox”> <input type=”color”> <input type=”date”> <input type=”datetime-local”> <input type=”email”> <input type=”file”> <input type=”hidden”> <input type=”image”> <input type=”month”> <input type=”number”> <input type=”password”> <input type=”radio”> <input type=”range”> <input type=”reset”> <input type=”search”> <input… Read More »

HTML Form Elements

This chapter describes all the different HTML form elements. The HTML <form> Elements The HTML <form> element can contain one or more of the following form elements: <input> <label> <select> <textarea> <button> <fieldset> <legend> <datalist> <output> <option> <optgroup> The <input> Element One of the most used form element is the <input> element. The <input> element can be displayed in several ways,… Read More »

HTML Forms

An HTML form is used to collect user input. The user input is most often sent to a server for processing. The <form> Element The HTML <form> element is used to create an HTML form for user input:<form>.form elements.</form> The <form> element is a container for different types of input elements, such as: text fields, checkboxes, radio buttons, submit… Read More »

HTML Uniform Resource Locators

A URL is another word for a web address. A URL can be composed of words (e.g. help.rerfindia.org), or an Internet Protocol (IP) address (e.g. 192.68.20.50). Most people enter the name when surfing, because names are easier to remember than numbers. URL – Uniform Resource Locator Web browsers request pages from web servers by using… Read More »