-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
55 lines (46 loc) · 2.42 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
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Guide to Survive @ Ashoka</title>
<!-- Bootstrap stylesheet -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
<!-- My stylesheet -->
<link rel="stylesheet" type="text/css" href="css/landing.css">
</head>
<body>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<!-- Bootstrap Navbar Code -->
<nav style = "background-color: #FFC263;" class="navbar fixed-top navbar-expand-lg navbar-light">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<img src="CSSoc_Logo.png" alt="" height="40pxpx" class="d-inline-block align-text-top">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-link" href="https://cs-ashoka.github.io/">Site</a>
<a class="nav-link" href="https://www.instagram.com/cs.ashoka/">Instagram</a>
</div>
</div>
</div>
</nav>
<!-- Bootstrap Navbar Code -->
<div class = "container d-flex">
<h1>Welcome to Ashoka, first-years!</h1>
<h2>This is a comprehensive guide to surviving your first year @ Ashoka, as told by the Computer Science Society and Kalinga Magazine.</h2><br>
<p>Possibly the coolest collab since <a style="text-decoration:none;"href= "https://www.youtube.com/watch?v=I6IIn2tZnvs">this</a>.</p>
<br>
<a href="starterpack.pdf" download="The Ashokan Starter Pack.pdf">
<button class="glow-on-hover">Download
</button>
</a>
</div>
<footer style = "background-color: #244579;color: white;"><center>Made with <i class="bi bi-heart-fill"></i> by the CS Society.</center></footer>
</body>
</html>