-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 1.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
<!DOCTYPE html>
<head>
<title>TSA Randomizer</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<link href='https://fonts.googleapis.com/css?family=EB+Garamond|Montserrat:700' rel='stylesheet' type='text/css'>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-XdYbMnZ/QjLh6iI4ogqCTaIjrFk87ip+ekIjefZch0Y+PvJ8CDYtEs1ipDmPorQ+" crossorigin="anonymous">
<link rel="stylesheet" href="/style.css">
</head>
<body>
<div class="app">
<div class="header">
<h1>TSA Randomizer</h1>
</div>
<div class="arrows">
<div class="leftArrow">
<i class="fa fa-arrow-left"></i>
</div>
<div class="rightArrow">
<i class="fa fa-arrow-right"></i>
</div>
</div>
<button class="randomizeButton">
randomize
</button>
<div class="shit-talking">
<div class="shit-talking-wrapper">
<p>
I made this in 1 hour.
</p>
<p>
<a target="_blank" href="https://kev.inburke.com/kevin/tsa-randomizer-app-cost-336000/">Where's my $1.4 million?</a>
</p>
</div>
</div>
<div class="hofftech-footer">
<p>
artisanal code by <a href="https://hoff.tech"><span class="hofftech-logo">HOFFTECH</span></a>
</p>
</div>
</div>
<script src="/tsa-randomizer.js"></script>
</body>