100DaysOfCode – Day 23: HTML Basics
Today, I wrote my first webpage and learned about HTML building blocks:
- Structured content using
<h1>
to<h6>
for better readability and SEO - Organized data with
<ul>
and<ol>
lists - Added links using
<a>
, and learned to always usetarget="_blank"
withrel="noopener noreferrer"
for security - Embedded images using
<img>
and added alt text for accessibility
It felt good to write my first webpage. Just imagining how I can customize it after learning CSS is exciting!
Top comments (0)