HTML Mastery

Basic HTML Structure

<!DOCTYPE html>
<html>
  <head>...</head>
  <body>...</body>
</html>

Headings

<h1>Title</h1> ... <h6>Smallest</h6>

Paragraphs & Line Breaks

<p>Text here</p>
<br /> for line break

Links

<a href="https://anime.com">Visit Anime!</a>

Images

<img src="anime.png" alt="Anime Pic" />

Lists

<ul><li>Item</li></ul>
<ol><li>Item</li></ol>

Tables

<table>
  <tr><td>Cell</td></tr>
</table>

Forms

<form>
  <input type="text" />
  <button>Send</button>
</form>

Comments

<!-- This is a comment -->

Semantic Tags

<header> <nav> <main> <section> <footer>

Anime Tip!

Use alt text for images:
<img src="character.png" alt="Character smiling" />