Basic HTML Examples (One Concept Per File)
- Basic Structure & Meta Tags - html, head, title, meta, link, style, script, body
- Semantic Structure - header, nav, main, section, article, aside, footer
- Headings - H1 to H6 heading levels
- Text Content - Paragraphs, line breaks, blockquotes, pre, lists (ol, ul, li, dl, dt, dd)
- Text Formatting - strong, em, b, i, u, small, mark, sub, sup, abbr, cite, code, span, time, var, kbd
- Links - Basic links (external, internal, email, phone)
- Images - Simple image examples
- Media & Embeds - img, audio, video, source, track, iframe, embed, object, param, canvas, svg
- Tables - table, caption, thead, tbody, tfoot, tr, th, td
- Forms & Inputs - form, input (all types), label, textarea, button, select, option, optgroup, fieldset, legend, datalist, output
- Interactive Elements - details, summary, progress, meter
- Scripting & Meta - noscript, template, slot, dialog, script examples
- Divs & Spans - Block and inline elements
- Attributes - HTML element attributes
- Comments - HTML comment syntax
- Line Breaks - Line breaks and horizontal rules
- Buttons - Different button types
- Input Types - Various form input elements
- Lists - Ordered and unordered lists
- Paragraphs - Basic paragraphs and line breaks
- Code - Code examples and preformatted text
Complete HTML Tags Coverage
This collection covers all major HTML tags organized by category:
🔤 Basic Structure Tags (8 tags)
<html>
,<head>
,<title>
,<meta>
<link>
,<style>
,<script>
,<body>
🧱 Content Sectioning (8 tags)
<header>
,<nav>
,<main>
,<section>
<article>
,<aside>
,<footer>
,<h1>
-<h6>
(6 tags)
📄 Text Content (13 tags)
<p>
,<br>
,<hr>
,<blockquote>
<pre>
,<ol>
,<ul>
,<li>
<dl>
,<dt>
,<dd>
🖍️ Inline Text Formatting (17 tags)
<a>
,<strong>
,<em>
,<b>
,<i>
<u>
,<small>
,<mark>
,<sub>
,<sup>
<abbr>
,<cite>
,<code>
,<span>
<time>
,<var>
,<kbd>
📦 Media & Embeds (11 tags)
<img>
,<audio>
,<video>
,<source>
,<track>
<iframe>
,<embed>
,<object>
,<param>
<canvas>
,<svg>
🧮 Table Tags (8 tags)
<table>
,<caption>
,<thead>
,<tbody>
<tfoot>
,<tr>
,<th>
,<td>
🎛️ Forms & Inputs (12 tags)
<form>
,<input>
,<label>
,<textarea>
<button>
,<select>
,<option>
,<optgroup>
<fieldset>
,<legend>
,<datalist>
,<output>
⚙️ Scripting & Meta (6 tags)
<noscript>
,<template>
,<slot>
<details>
,<summary>
,<dialog>
Total: 83+ HTML tags demonstrated across all example files!