- HTML Head Section
The <head> element contains metadata or information about the HTML page. It is a container for the following elements: <title>, <style>, <meta>, <link>, <script>, <noscript>, and <base>. Title tag The <title> tag defines the title of the document. The title must be text-only, and it is shown in the…
- HTML DOM
When a web page is loaded, the browser creates a Document Object Model of the page. The HTML DOM is a standard object model and programming interface for HTML. It defines: The HTML elements as objects The properties of all HTML elements The methods to access all HTML elements The events for all…
- HTML Table
A table is a structured set of data made up of rows and columns. A table allows you to quickly and easily look up values that indicate some kind of connection between different types of data, for example a person and their age. The <table> tag defines an HTML table. Each table row is defined with…
- HTML Graphics
Canvas <canvas> is used to draw graphics, on the fly, via JavaScript. The <canvas> element is only a container for graphics. You must use JavaScript to actually draw the graphics. Canvas has several methods for drawing paths, boxes, circles, text, and adding images. <div class=”row”> <div…
- HTML Media
Multimedia on the web is sound, music, videos, movies, and animations. Audio <!– controls attribute specifies that audio controls should be displayed (such as a play/pause button etc) –> <!– loop attribute specifies that the audio will start over again, every time it is finished. –> <!– autoplay…