Posted on

mbvbb

 Container for metadata <title></title> The title of your project
 link to external style sheets  specify
the character set, page description, keywords, author of the document, and
viewport settings  used to define style information for a single
document  specifies the base URL and/or target for all relative
URLs in a page

define client-side JavaScripts
Horizontal Ruler
<hr />
Anchor
<a href="url">link text</a> Link to url
<a href="#yourSection">link text</a> Link to your section
<a href="url" target="_blanl" rel="noopener">link text</a> Opens your link in another tab in a browser
Table
<table></table>
Define a table

<tr></tr>
Define a table row

<th></th>
Define a table heading

<td></td>
Define a table data
List
<ul></ul>
Defines an unordered list

<ol></ol>
Defines an ordered list

<li></li>
Defines a list item

<dl></dl>
Defines a description list

<dt></dt>
Defines a term in a description list

<dd></dd>
Describes the term in a description list
Button
<button></button> Defines a clickable button
SVG
 Container for SVG graphics ### Video tag ```html
<video controls src="movie.mp4">
Video type not supported by this browser!
</video>
Unordered List
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
Ordered List
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
HTML Semantics
<header></header>
Specifies a header for a document or section

<main></main>
Specifies the main content of a document

<footer></footer>
Defines a footer for a document or section

<article></article>
Defines independent, self-contained content

<aside></aside>
Defines content aside from the page content

<figure></figure>
Specifies self-contained content

<nav></nav>
Defines navigation links

<section></section>
Defines a section in a document
Semantic media Tags
<figure></figure> Embeds annotated images, illustrations, photos, code, etc.
<figcaption></figcaption> For adding a caption/annotation to the <figure>.
 Responsive image insertion,allows developers to provide different images for different contexts.

<video poster=" " autoplay loop controls></video>