-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents.html
88 lines (84 loc) · 2.81 KB
/
events.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!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" />
<title>Document</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Timeline -->
<section class="section timeline">
<!-- Section Title -->
<div class="section-title">
<h2 style="color: blueviolet; font-size: 3rem">Events Timeline</h2>
<div class="underline"></div>
</div>
<!-- End Of Section Title -->
<div class="section-center timeline-center">
<!-- Single Timeline Item -->
<article class="timeline-item">
<h4>Circuitrix</h4>
<p>
Date:10th March,2022 <br />Dive into the world of arduing using
tinkercad and solve complex circuits
</p>
<span class="number"> 1 </span>
</article>
<!-- End of Single Timeline Item -->
<!-- Single Timeline Item -->
<article class="timeline-item">
<h4>Ideathon</h4>
<p>
Date:11th March,2022 <br />Love Startups? Get in here to pitch your
idea to some of the really esteemed judges
</p>
<span class="number"> 2 </span>
</article>
<!-- End of Single Timeline Item -->
<!-- Single Timeline Item -->
<article class="timeline-item">
<h4>Hackathon</h4>
<p>
Date:13th March,2022 <br />Get into tech and develop a real time
solution in this 2 day hackathon
</p>
<span class="number"> 3 </span>
</article>
<!-- End of Single Timeline Item -->
<!-- Single Timeline Item -->
<article class="timeline-item">
<h4>Quizzle</h4>
<p>
Date:17th March,2022 <br />Be a winner by answering questions in
this tech quiz
</p>
<span class="number"> 4 </span>
</article>
<!-- End of Single Timeline Item -->
<!-- Single Timeline Item -->
<article class="timeline-item">
<h4>Surprize</h4>
<p>
Date:18th March,2022 <br />WOO-HOO the organisers have a surprize
for you!!!
</p>
<span class="number"> 5 </span>
</article>
<!-- End of Single Timeline Item -->
<!-- Single Timeline Item -->
<article class="timeline-item">
<h4>Codeathon</h4>
<p>
Date:10th March,2022 <br />Solve complex problems by coding in your
<em>favourite language</em>
</p>
<span class="number">6</span>
</article>
<!-- End of Single Timeline Item -->
</div>
</section>
<!-- End Of Timeline -->
</body>
</html>