forked from TG1999/converge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPronites.html
141 lines (128 loc) · 5.2 KB
/
Pronites.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Converge | Artists</title>
<link rel="stylesheet" href="./styles/style.css" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
<link
href="https://fonts.googleapis.com/css?family=Lilita+One&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./styles/pronites.css" />
</head>
<body>
<div id="side-menu" class="side-nav">
<a onClick="closeSlideMenu()">
<img src="./assets/close.svg" class="close-btn" />
</a>
<a href="./index.html" id="home-anchor" class="mt-5">HOME</a>
<a href="./index.html#highlights" id="highlights-anchor">HIGHLIGHTS</a>
<a href="./index.html#events" id="events-anchor">EVENTS</a>
<a href="Pronites.html">PRONITES</a>
<a href="./index.html#timeline" id="timeline-anchor">TIMELINE</a>
<a href="team.html">TEAM</a>
<a href="sponsors.html">SPONSORS</a>
<a href="./index.html#reachUs">REACH US</a>
<a href="./register.html?q=camb">CAMPUS AMBASSADOR</a>
<div class="d-flex sidebar-social">
<a href="https://www.facebook.com/jiitconverge/"><img src="./assets/facebook-logo.svg"/></a>
<a href="https://www.instagram.com/jiitconverge/"><img src="./assets/instagram-logo.svg"/></a>
</div>
</div>
<div class="hlts" name="hlts">
<div class="container">
<div class="d-flex justify-content-between align-items-center pt-3">
<img
id="menu-btn"
onClick="openSlideMenu()"
src="./assets/menu-button.svg"
/>
<h1 class="text-center my-captions" id="hltsheading">
ARTISTS
</h1>
<a href="./index.html">
<img id="home-btn" src="./assets/OLogo3d-cropped.png" />
</a>
</div>
<div class="row mt-3 d-flex justify-content-around">
<div class="card" style="width: 18rem;">
<img
class="card-img-top"
src="./assets/artists-cover.png"
alt="Card image cap"
/>
<div class="card-body">
<h5 class="card-title text-center text-white">To be revealed soon</h5>
<p class="card-text text-center text-white">
Details of the artist will be announced soon
</p>
<div class="date-time">
<h5 class="text-center ">01 FEB</h5>
<h1 class="text-center text-white">6:00 PM</h1>
</div>
</div>
</div>
<div class="card" style="width: 18rem;">
<img
class="card-img-top"
src="./assets/artists-cover.png"
alt="Card image cap"
/>
<div class="card-body">
<h5 class="card-title text-center text-white">To be revealed soon</h5>
<p class="card-text text-center text-white">
Details of the artist will be announced soon
</p>
<div class="date-time">
<h5 class="text-center">02 FEB</h5>
<h1 class="text-center text-white">6:00 PM</h1>
</div>
</div>
</div>
<div class="card" style="width: 18rem;">
<img
class="card-img-top"
src="./assets/artists-cover.png"
alt="Card image cap"
/>
<div class="card-body">
<h5 class="card-title text-center text-white">To be revealed soon</h5>
<p class="card-text text-center text-white">
Details of the artist will be announced soon
</p>
<div class="date-time">
<h5 class="text-center">02 FEB</h5>
<h1 class="text-center text-white">7:30 PM</h1>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="d-flex footer-step-2 justify-content-around align-items-center ">
<div class="text-white montserrat font-weight-normal">
<img src="./assets/white3dtext.png" class="footer-2-logo" />
<p class="footer-2-p">
All Rights Reserved.<br />Made with <span><img style="width: 1rem;" src="./assets/heart.svg"
/></span> by Technical Team
</p>
</div>
<div class="d-flex footer-social">
<a href="https://www.facebook.com/jiitconverge/"><img src="./assets/facebook-logo.svg"/></a>
<a class="ml-3" href="https://www.instagram.com/jiitconverge/"
><img src="./assets/instagram-logo.svg"
/></a>
</div>
</div>
<script src="./scripts/index.js"></script>
</body>
</html>