-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
46 lines (46 loc) · 1.29 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
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<title>CSST</title>
<style>
body{
background-color: #2f252f;
color: white;
}
.nav{
display: block;
max-height: 50px;
min-height: 10%;
}
.nav-links{
color: #ca52dc;
display: inline;
justify-content: center;
margin: 0px 10px;
}
.filler{
height: 100%;
padding: 0% 16% 0% 16%;
content: "";
}
.nav-links a{
color: inherit;
}
</style>
</head>
<body>
<div class="nav">
<span class="filler"></span>
<span class="nav-links"><a href="./index.html">Home</a></span>
<span class="nav-links"><a href="https://github.com/TumblrCommunity">Projects</a></span>
<!-- Switch this link later -->
<span class="nav-links"><a href="https://github.com/orgs/TumblrCommunity/people">About</a></span>
<span class="nav-links"><a href="https://discord.me/computerscience">Discord</a></span>
<span class="filler"></span>
</div>
<h1>Hello World</h1>
</body>
</html>