-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (35 loc) · 967 Bytes
/
index.html
File metadata and controls
36 lines (35 loc) · 967 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Simple RSS Reader</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<aside class="sidebar">
<h2>Feeds</h2>
<ul class="feed-list">
<!-- Feed items will be dynamically generated -->
<li><a href="#">Feed 1</a></li>
<li><a href="#">Feed 2</a></li>
<li><a href="#">Feed 3</a></li>
<!-- Add more feed items as needed -->
</ul>
</aside>
<main class="content">
<h1>Feed Title</h1>
<div class="feed-items">
<!-- Feed items will be dynamically generated -->
<div class="feed-item">
<h3>Article Title</h3>
<p>Article Description</p>
<a href="#">Read More</a>
</div>
<!-- Add more feed items as needed -->
</div>
</main>
<button id="dark-mode-toggle">Toggle Dark Mode</button>
</div>
<script src="script.js"></script>
</body>
</html>