-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyearwise.html
59 lines (56 loc) · 2.42 KB
/
yearwise.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="yearstyle.css">
<link rel="icon" type="image/png" href="img/osaicon.png"/>
<title>Document</title>
</head>
<body>
<div class="row">
<header>
<h1>Year-wise <span>Events</span></h1>
</header>
<div class="main-timeline">
<div class="timeline"><div class="timeline-content">
<div class="timeline-year"><button class="btn" type="button" onclick='window.location.href="year21.html"'>2021</button></div>
<ul class="title">
<li>Event 1</li>
<li>Event 2</li>
<li>Event 3</li>
<li>Event 4</li>
</ul>
</div></div>
<div class="timeline"><div class="timeline-content">
<div class="timeline-year"><button class="btn" type="button" onclick='window.location.href="year20.html"'>2020</button></div>
<ul class="title">
<li>Event 1</li>
<li>Event 2</li>
<li>Event 3</li>
<li>Event 4</li>
</ul>
</div></div>
<div class="timeline"><div class="timeline-content">
<div class="timeline-year"><button class="btn" type="button" onclick='window.location.href="year19.html"'>2019</button></div>
<ul class="title">
<li>Event 1</li>
<li>Event 2</li>
<li>Event 3</li>
<li>Event 4</li>
</ul>
</div></div>
<div class="timeline"><div class="timeline-content">
<div class="timeline-year"><button class="btn" type="button" onclick='window.location.href="year18.html"'>2018</button></div>
<ul class="title">
<li>Event 1</li>
<li>Event 2</li>
<li>Event 3</li>
<li>Event 4</li>
</ul>
</div></div>
</div>
</div>
</body>
</html>