HTML Basic
Basic tags you will use every day
Headings and text
<h1>Main title</h1>
<h2>Section</h2>
<p>A paragraph with <strong>bold</strong> and <em>italic</em> text.</p>
Links and images
<a href="https://hackifytech.com">Visit HackifyTech</a>
<img src="/logo.png" alt="HackifyTech logo" width="120" />
Lists
<ul>
<li>First item</li>
<li>Second item</li>
</ul>
Practice combining these on one page before moving to CSS styling.