-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (58 loc) · 2.41 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
56
57
58
59
60
61
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Homepage</title>
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico">
<!-- Bootstrap CSS -->
<!-- <link rel="stylesheet" href="css/bootstrap.min.css"> -->
<!-- Custom CSS -->
<link rel="stylesheet" href="css/style.css" />
<!-- Fonts Google -->
<link href="https://fonts.googleapis.com/css?family=Fira+Mono|Fira+Sans" rel="stylesheet">
</head>
<body>
<div id="container">
<div id="clock">
<span class="time"></span>
</br>
<span class="hex"></span>
</div>
<div class="box">
<span class="date"></span>
</div>
<div id="links">
<!-- General -->
<div class="box tag" id="general">
<h3><span class="blue"> ~ </span> <span class="pink">❯</span> [<span class="green">General</span>]<span class="pink">:</span> ls</h3>
<a class="blue" href="http://stackoverflow.com/">Stack Overflow</a>
<a class="red" href="https://github.com/">Github</a>
<a class="cyan" href="https://gist.github.com/hypersymmetry">My Gists</a>
<a class="gold" href="https://hn.premii.com">Hacker News</a>
</div>
<!-- Media -->
<div class="box tag" id="media">
<h3><span class="blue"> ~ </span> <span class="pink">❯</span> [<span class="green">Media</span>]<span class="pink">:</span> ls</h3>
<a class="cyan" href="https://facebook.com">Facebook</a>
<a class="blue" href="https://tumblr.com">Tumblr</a>
<a class="red" href="https://youtube.com/feed/subscriptions">Youtube</a>
<a class="cyan" href="https://www.reddit.com">Reddit</a>
<a class="red" href="https://www.twitch.tv/directory">Twitch</a>
</div>
<!-- School -->
<div class="box tag" id="school">
<h3><span class="blue"> ~ </span> <span class="pink">❯</span> [<span class="green">School</span>]<span class="pink">:</span> ls</h3>
<a class="red" href="https://elearn.uta.edu">Elearn</a>
<a class="blue" href="https://uta.edu/mymav">MyMav</a>
<a class="red" href="https://outlook.office365.com/owa/?realm=mavs.uta.edu">MavMail</a>
<a class="cyan" href="https://echo360.org/home">Echo 360</a>
</div>
</div>
</div>
<!-- jQuery and Custom Javascript -->
<script src="js/jquery.min.js"></script>
<script src="js/custom.js"></script>
</body>
</html>