<!DOCTYPE html> |
Document Type Declaration |
specifies the HTML version being used (HTML5). |
<head> |
Head element |
Contains meta-information about the HTML document. |
<h1>To<h6> |
Heading tags |
define headings with <h1> as the largest and <h6> as the smallest. |
<p> |
Paragraph tag |
represents a block of text. |
<a> |
Anchor tag |
creates hyperlinks. |
<ul> |
Unordered List tag |
creates a bulleted list. |
<ol> |
Ordered List tag |
creates a numbered list. |
<li> |
List Item tag |
represents an item in a list. |
<div> |
Division tag |
a generic container for grouping elements. |
<span> |
Span tag |
a generic inline container. |
<br> |
Line Break tag |
creates a line break in text. |
<strong> |
Strong tag |
represents strong importance, typically bold. |
<em> |
Emphasis tag |
represents emphasized text, typically italic. |