-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (52 loc) · 1.8 KB
/
index.html
File metadata and controls
52 lines (52 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Changelog</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="main-container">
<div class="changelog-header">
<h1>Changelog</h1>
<p>Here's everything we have shipped in the past few days</p>
</div>
<div class="timeline">
<div class="timeline-entry">
<p class="date">September 3, 2024</p>
<p class="entry">Announcing Projects on Frontend Roadmap</p>
</div>
<div class="timeline-entry">
<p class="date">August 28, 2024</p>
<p class="entry">Build your learning habits with learning streaks</p>
</div>
<div class="timeline-entry">
<p class="date">August 25, 2024</p>
<p class="entry">Git and GitHub Roadmap</p>
</div>
<div class="timeline-entry">
<p class="date">August 22, 2024</p>
<p class="entry">Submit your project solution and get feedback</p>
</div>
<div class="timeline-entry">
<p class="date">August 15, 2024</p>
<p class="entry">Backend Project Ideas</p>
</div>
<div class="timeline-entry">
<p class="date">August 10, 2024</p>
<p class="entry">Redis roadmap</p>
</div>
<div class="timeline-entry">
<p class="date">August 1, 2024</p>
<p class="entry">Changelog page to help you stay in the loop</p>
</div>
</div>
<button class="changelog-button">Visit Complete Changelog</button>
</div>
</body>
</html>