Activity 18: Research HTML
Key Elements:
Headings:
<h1>
,<h2>
,<h3>
for different levels of headings.Paragraphs:
<p>
for text content.Lists: Both
<ul>
(unordered) and<ol>
(ordered) lists are used.Table: Created using
<table>
,<tr>
,<th>
, and<td>
.Semantic HTML: Used meaningful tags like
<header>
,<nav>
,<article>
,<section>
, and<footer>
for organizing the page structure.