-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
45 lines (43 loc) · 1.73 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Certificates</title>
<!-- META TAGS -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no">
<!-- STYLES -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/index.css">
<link href="https://fonts.googleapis.com/css?family=Oswald:700" rel="stylesheet">
</head>
<body>
<div id="main container">
<div class="row">
<div class="heading">Certificates</div>
</div>
<div class="row events">
<div class="col-sm-6">
<div class="event" onclick="location.replace('udaan.html')">
<div class="heading">Udaan Certificates</div>
</div>
</div>
<div class="col-sm-6">
<div class="event" onclick="location.replace('talks.html')">
<div class="heading">BVM Talks certificate</div>
</div>
</div>
</div>
<div class="row">
<div class="heading">Note</div>
</div>
<div class="instruction">If you get error while downloading your certificate, try using different browsers and saving it manually.</div>
</div>
<!-- SCRIPTS -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"
integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy"
crossorigin="anonymous"></script>
<script type="text/javascript" src="js/index.js"></script>
</body>
</html>