-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
49 lines (46 loc) · 1.67 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
<!DOCTYPE html>
<html>
<head>
<title>Trident</title>
<link rel="shortcut icon" href="img/favicon.ico">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:100,400" rel="stylesheet">
</head>
<main>
<img id="logo" src="img/logo.png" alt="Trident Logo" />
<header>
<h1 id="title">Trident</h1>
</header>
<p id="tagline">We Make Things ™</p>
</main>
<div class="full">
<section id="people">
<header>
<h2>People</h2>
</header>
<div class="person">
<img src="https://avatars3.githubusercontent.com/u/1813540?s=460&v=4" class="head" alt="darkevilmac" align="left">
<div class="person-info">
<span class="name">darkevilmac</span>
<span class="desc">"im not really sure how it happened but i can make programming things"</span>
</div>
<div class="links">| <a href="https://github.com/darkevilmac">GitHub</a> | <a href="https://twitter.com/darkevilmac">Twitter</a> |</div>
</div>
</section>
<section id="projects">
<header>
<h2>Projects</h2>
</header>
<div class="project">
<div class="project-info">
<span class="name">Atlas</span>
<span class="desc">Tridev Atlas is a general use JAR remapping and merge tool.</span>
</div>
<div class="links">| <a href="https://github.com/TridentMC/Atlas">GitHub</a> |</div>
</div>
<div class="coming-soon">
<span>More coming soon! Stay Tuned!</span>
</div>
</section>
</div>
</html>