-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (62 loc) · 1.59 KB
/
index.html
File metadata and controls
68 lines (62 loc) · 1.59 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Ubuntu">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SeeSharpeDen</title>
</head>
<body>
<div class="topnav">
<a href="https://seesharpeden.com" class="active">Home</a>
<a href="https://seesharpeden.com/repos">Repos</a>
<a href="https://seesharpeden.com/links">Socials</a>
</div>
<h1 class="ssdtitle">SeeSharpeDen</h1>
<h2 class="joinmsg"><a class="joinmsg" href="https://discord.gg/82dEsZsvNf">Join the<span class="yellow"> SeeSharpeDen </span>Discord server!</a></h2>
</body>
<style>
body {
background-color: #212121;
}
.ssdtitle {
color: #f8b300;
text-align: center;
font-family: Ubuntu, Verdana;
font-size: 52px;
text-decoration: underline #ffffff;
}
.joinmsg {
color: #ffffff;
text-align: center;
font-family: Ubuntu, Verdana;
font-size: 46px;
text-decoration: none;
}
.yellow {
color: #f8b300;
}
.topnav {
overflow: hidden;
font-family: Ubuntu, Verdana;
background-color: #212121;
}
.topnav a {
float: left;
color: #f8b300;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ffffff;
color: #212121;
}
.topnav a.active {
background-color: #f8b300;
color: #ffffff;
}
</style>
</html>