forked from Samridhi002/Aavaran
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
33 lines (33 loc) · 950 Bytes
/
blog.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Educational Content</title>
<link rel="stylesheet" href="blog.css">
</head>
<body>
<header>
<h1>Educational Content on Sustainability</h1>
</header>
<main>
<aside id="sidebar">
<h2>Top 10 Blogs</h2>
<ul id="blog-list">
<!-- Blog list items will be populated by JavaScript -->
</ul>
</aside>
<section id="blogs-container">
<!-- Blog bubbles will be populated by JavaScript -->
</section>
</main>
<div id="modal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<h2 id="modal-title"></h2>
<p id="modal-description"></p>
</div>
</div>
<script src="blog.js"></script>
</body>
</html>