HTML Cheat Sheet - Simple Notes
---
DOCUMENT STRUCTURE
<html>...</html>: Root element wrapping all content.
<head>...</head>: Contains metadata, scripts, stylesheets.
<title>...</title>: Page title (displayed in browser tab).
<body>...</body>: Contains visible content.
Example:
<html>
<head>
<title>My Website</title>
</head>
<body>
<!-- Content -->
</body>
</html>
---
DOCUMENT INFORMATION
<meta charset="utf-8">: Sets character encoding.
<link rel="stylesheet" href="[Link]">: Links external CSS.
<style>...</style>: Embeds CSS.
<script>...</script>: Embeds or links JavaScript.
---
TEXT FORMATTING
<strong>...</strong>: Bold text.
<em>...</em>: Italic text.
<blockquote>...</blockquote>: Block quotation.
<code>...</code>: Inline code snippet.
<pre>...</pre>: Preformatted text (preserves whitespace).
Example:
<p><strong>Bold</strong> and <em>italic</em> text.</p>
<blockquote>Quote here.</blockquote>
---
LINKS & IMAGES
<a href="url">Link</a>: Hyperlink.
- href="#section": Link to page section.
- href="[Link] Email link.
- href="[Link] Phone link.
<img src="[Link]" alt="Description">: Embeds an image.
- width, height, alt are key attributes.
Example:
<a href="[Link] Example</a>
<img src="[Link]" alt="Logo" width="100">
---
TABLES
<table>...</table>: Defines a table.
<tr>...</tr>: Table row.
<th>...</th>: Header cell.
<td>...</td>: Data cell.
<thead>, <tbody>, <tfoot>: Table sections.
Example:
<table>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
<tr>
<td>Alice</td>
<td>30</td>
</tr>
</table>
---
OBJECTS & IFRAMES
<iframe src="url"></iframe>: Embeds another webpage.
<embed src="[Link]">: Embeds external content (e.g., Flash).
Attributes:
- width, height: Set dimensions.
- src: Source URL.
---
HTML5 TAGS
<header>...</header>: Page or section header.
<footer>...</footer>: Page or section footer.
<article>...</article>: Self-contained content.
<section>...</section>: Thematic grouping of content.
<nav>...</nav>: Navigation links.
<mark>...</mark>: Highlighted text.
---
SPECIAL CHARACTERS
": "
&: &
<: <
>: >
: Non-breaking space.
©: ©