<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>Welcome</h1>
<p>This is a paragraph.</p>
</body>
</html>
<html> → Root element<head> → Metadata, title, CSS, scripts<body> → Content visible on the page1️⃣ Headings
<h1> to <h6> for hierarchical headings<h1>Main Heading</h1> <h2>Subheading</h2>
2️⃣ Paragraphs & Text Formatting
<p> → Paragraphs<b> / <strong> → Bold<i> / <em> → Italic<mark> → Highlight3️⃣ Links
<a> tag creates hyperlinks<a href="https://www.google.com" target="_blank">Go to Google</a>
4️⃣ Images
<img> embeds imagessrc, alt, width, height<img src="image.jpg" alt="Description" width="300">
5️⃣ Lists
<ol> → Numbered<ul> → Bullets<dl> → Terms & definitions6️⃣ Tables
<table> for tabular data<tr> → Row<th> → Header cell<td> → Data cellcolspan, rowspan
<table border="1">
<tr><th>Name</th><th>Age</th></tr>
<tr><td>Alice</td><td>25</td></tr>
</table>
7️⃣ Forms
<form> collects user input<input>, <textarea>, <select>, <button>text, password, email, number, radio, checkbox, filerequired, pattern, min, max, minlength, maxlength8️⃣ Multimedia
<audio> with controls, autoplay, loop<video> with controls, poster, width, height
<video width="640" height="360" controls>
<source src="movie.mp4" type="video/mp4">
</video>
9️⃣ Navigation Bar
<nav> wraps links for site navigation<ul> and <li>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
🔹 HTML Attributes
id, class, src, alt, href, title, style, target🔹 HTML Semantic Tags (HTML5)
<header> → Top section or page header<footer> → Footer section<section> → Thematic grouping<article> → Independent content<aside> → Sidebar or related content<main> → Main content10️⃣ HTML Iframes
<iframe> embeds another webpage inside a page<iframe src="https://www.example.com" width="600" height="400"></iframe>
style="color:red; font-size:20px;"A small webpage combining everything:
<!DOCTYPE html>
<html>
<head>
<title>HTML Summary Page</title>
</head>
<body>
<header>
<h1>My Website</h1>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
</ul>
</nav>
</header>
<section id="home">
<h2>Welcome</h2>
<p>This is an HTML summary page.</p>
</section>
<section id="about">
<h2>About HTML</h2>
<ul>
<li>HyperText Markup Language</li>
<li>Structuring content</li>
<li>HTML5 features</li>
</ul>
</section>
<footer>
<p>© 2026 My Website</p>
</footer>
</body>
</html>