-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
50 lines (43 loc) · 1.94 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
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=768">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- CSS, BOOTSTRAP -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.14.0/css/all.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" />
<link rel="stylesheet" href="css/index.css" />
<link rel="stylesheet" href="css/navbar.css" />
<link rel="stylesheet" href="css/timeline.css" />
<link rel="stylesheet" href="css/footer.css" />
<link rel="stylesheet" href="css/registration.css" />
<link rel="stylesheet" href="css/about-us.css" />
<link rel="icon" type="image/png" href="static/images/logo.png" />
<title>Robotics Winter Of Code</title>
</head>
<body>
<!-- Navbar -->
<div id="nav-placeholder"></div>
<!-- Navbar ends -->
<div id="about-us" class="container-fluid"></div>
<div class="container">
<!-- timeline begins -->
<div id="timeline-placeholder"></div>
<!-- timeline ends -->
</div>
<div class="register_block">
<!-- registeration begins -->
<div id="register-placeholder"></div>
<!-- ends -->
</div>
<!-- Footer Begins -->
<div id="footer-placeholder"></div>
<!-- Footer Ends -->
<!-- Scripts -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
<script src="js/index.js"></script>
</body>
</html>