HTML Basics
HTML (HyperText Markup Language) is the standard markup language for creating web pages.
Common HTML Elements
HTML elements are the building blocks of web pages.
Headings
<h1>Main Title</h1>
<h2>Subtitle</h2>
<h3>Section Title</h3>Text Elements
<p>Paragraph text</p>
<strong>Bold text</strong>
<em>Italic text</em>Links
<a href="url">Link text</a>
<a href="#" target="_blank">New tab</a>Lists
<ul>
<li>Unordered item</li>
</ul>
<ol>
<li>Ordered item</li>
</ol>Semantic HTML
Semantic elements clearly describe their meaning to both the browser and the developer.
Structure Elements
<header> - Page/section header
<nav> - Navigation links
<main> - Main content
<footer> - Page/section footerContent Elements
<article> - Independent content
<section> - Thematic grouping
<aside> - Side content
<figure> - Self-contained media