- HTML Doctypes
A DOCTYPE is an instruction to the web browser about the version of HTML in which the web page is written. A DOCTYPE declaration appears at the top of a web page before all other elements. According to the HTML specification or standards, every HTML document requires a valid document type…
- 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…
- HTML Lists
Ordered List <div class=”row”> <div class=”col-3″> <h3>Ordered List</h3> </div> <div class=”col-9″> <ol> <li>Apple</li> <li>Mango</li> <li>Banana</li> </ol> </div> </div> Unordered List <div class=”row”> <div class=”col-3″> <h3>Unordered List</h3> </div> <div class=”col-9″> <ul> <li>Apple</li>…
- HTML Elements
An HTML element is defined by a start tag, some content, and an end tag. An HTML element is defined by a start tag, some content, and an end tag: Note that some HTML elements have no content (like the <br> element). These elements are called empty elements. Empty elements do not have an end […]
- HTML Text Formatting
HTML has tags that display text in a special way with having to use CSS. <p>This is <b>bold text</b>.</p> <p>This is <strong>strongly important text</strong>.</p> <p>This is <i>italic text</i>.</p> <p>This is <em>emphasized text</em>.</p> <p>This is <mark>highlighted text</mark>.</p> <p>This is…
- HTML Form
Form method : what http protocol(GET/POST) action: defines the action to be performed when the form is submitted. Usually, this is a url or endpoint of which to process the form autocomplete: autocomplete form novalidate: don’t validate form on submit <form method=”POST” action=”/signup”…
- HTML Introduction
HTML is the standard markup language for creating Web pages. It is the most widely used language on the web. A markup language uses sets of markup tags to characterize text elements within a document, which gives instructions to the web browsers on how the document should appear. Originally, HTML…
- HTML SEO
Title Description Social Media Tags Viewport metadata <meta name=”viewport” content=”width=device-width, initial-scale=1″/>