-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathevents.html
More file actions
54 lines (45 loc) · 1.89 KB
/
events.html
File metadata and controls
54 lines (45 loc) · 1.89 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
53
54
<!DOCTYPE html>
<html>
<head>
<title>Events</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Comfortaa" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<style type="text/css">
body {
background: linear-gradient(180deg, #F44336, #fff);
}
</style>
<div class="page-title">
<h1 class="title-text animated fadeIn">Events</h1>
</div>
<div class="committees-list animated bounceInUp">
<div class="committee" id="comps">
<h1 class="committee-title">Comps Committee</h1>
<p class="committee-text">Some random details aboutt the committee that no one cares about</p>
<div class="events-list-container">
<img class="committee-image" src="img/image.png">
<div class="events-list">
<h3>Events</h3>
<div class="event">SOme events</div>
<div class="event-details">Some Shit</div>
<div class="event">SOme events</div>
<div class="event-details">Some Shit</div>
<div class="event">SOme events</div>
<div class="event-details">Some Shit</div>
<div class="event">SOme events</div>
<div class="event-details">Some Shit</div>
</div>
</div>
</div>
</div>
<div id="footer"></div>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src="js/main.js"></script>
<script src="js/events.js"></script>
</body>
</html>