-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (77 loc) · 2.03 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ETG is cool</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<nav>
<div>
<img id="logo" src="./images/gungeon-logo.png" alt="logo">
<span>Enter The Gungeon</span>
</div>
<div id="nav-anchors">
<a href="">Useless Link</a>
<a href="">About Us</a>
<a id="do-not-click" href="">Don't Click Here</a>
</div>
</nav>
<header>
<img src="./images/gungeon-outside.png" alt="the gungeon">
<h1>The Gungeon is the best place to spend your time</h1>
<p>Crazy guns, wacky explosives, tables, chests (or mimics, shoot them to be sure), bullets, blobulons, robots, boss fights and a lot of action don't even begin to describe this awesome and totally harmless place</p>
<button><b>COOL</b></button>
</header>
<div>
<h2><b>We have nice characters!</b></h2>
<ul id="characters">
<li>
<div>
<img src="./images/etg-hunter.jpeg" alt="The Hunter">
<span>The Hunter</span>
</div>
</li>
<li>
<div>
<img src="./images/etg-cultist.jpeg" alt="The Cultist">
<span>The Cultist</span>
</div>
</li>
<li>
<div>
<img src="./images/etg-bullet.jpeg" alt="The Bullet">
<span>The Bullet</span>
</div>
</li>
<li>
<div>
<img src="./images/etg-robot.jpeg" alt="The Robot">
<span>The Robot</span>
</div>
</li>
</ul>
</div>
<div>
<figure>
<blockquote>
<p>"Obliterating innocent bullets in the gungeon is better than bears, beets and battlestar galactica"</p>
</blockquote>
<figcaption>-Dwight Schrute</figcaption>
</figure>
</div>
<div id="invite">
<div id="invite-card">
<div>
<h5>It's time to shoot the past!</h5>
<span>we do not responsibilise for permanent damages to the present or future (end everything in between)</span>
</div>
<button>I'm in B^)</button>
</div>
</div>
<footer>
<span>Copyright © github.com/Jonyski</span>
</footer>
</body>
</html>