Welcome to Day 9 of your HTML journey! This day was all about understanding the foundation of every webpage – HTML’s core building blocks.
You learned how to structure a basic webpage, add headings, write paragraphs, create lists, insert links, embed images, and display data using tables. Think of this as learning the “alphabet” of web development.
Day9/
└── Readme.md # Readme file covering basic HTML elements
<!DOCTYPE html>,<html>,<head>,<body>- Importance of document hierarchy
<h1>to<h6>for titles<p>for text blocks
<strong>for bold emphasis<em>for italics<br>for line breaks<hr>for thematic breaks
- Unordered (
<ul>) and ordered (<ol>) lists <li>for list items
<a>withhrefandtarget="_blank"<img>withsrcandalt
<table>,<tr>,<th>,<td>for tabular data
✔️ Structuring a webpage from scratch ✔️ Adding and formatting text ✔️ Linking pages and resources ✔️ Presenting data in a table
- Always include
altfor images – it’s good for SEO and accessibility. - Use headings in order (
h1beforeh2) for better document structure. - Test links to ensure they open as intended.
You’ve now mastered HTML basics. Next, we’ll explore how to give HTML more meaning with attributes and semantic tags in Day 10.