-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog-post.html
More file actions
53 lines (50 loc) · 6.64 KB
/
blog-post.html
File metadata and controls
53 lines (50 loc) · 6.64 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Semantic Blog Layout</title>
</head>
<body>
<header>
<h1>Tech News Daily</h1>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/news">News</a></li>
<li><a href="/reviews">Reviews</a></li>
<li><a href="/contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<article>
<header>
<h2>Breaking: New JavaScript Framework Released</h2>
<p>By John Doe — Aug 2025</p>
</header>
<section>
<h3>Overview</h3>
<p>A new framework has entered the JavaScript world...</p>
</section>
<section>
<h3>Key Features</h3>
<ul>
<li>Lightweight</li>
<li>Faster rendering</li>
<li>Built-in TypeScript support</li>
</ul>
</section>
</article>
<aside>
<h3>Related Articles</h3>
<ul>
<li><a href="#">Why TypeScript is Taking Over</a></li>
<li><a href="#">Top 10 VS Code Extensions</a></li>
</ul>
</aside>
</main>
<footer>
<p>© 2025 Tech News Daily</p>
</footer>
</body>
</html>