-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsemantics.html
37 lines (35 loc) · 1.48 KB
/
semantics.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>An example webpage</title>
</head>
<body>
<header>
<h1>This is the heading</h1>
<h2>Here's how we create a webpage</h2>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</nav>
</header>
<article>
<hgroup>
<h2>The month of October</h2>
<h3>The autumn season is here and so are the festive days!</h3>
<h4><time datetime="01-10-2024">October 1st, 2024</time></h4>
</hgroup>
<section>
<p>In October, India embraces the golden hues of autumn, where cool breezes gently sweep across the land. The monsoons retreat, leaving behind lush greenery and vibrant blooms. Festivals light up the sky with fireworks and joy, as harvests are celebrated in abundance. The air becomes crisp, mornings are dewy, and sunsets are painted in shades of orange and pink. October's serenity offers a respite, where nature and culture blend harmoniously. It’s a month of rejuvenation, with clear skies, festive vibes, and a subtle charm that fills every heart with warmth and tranquility.</p>
</section>
</article>
<footer>
<address>Swarnjeet N Tiwary here!</address>
<p>© SNT2024</p>
</footer>
</body>
</html>