forked from Aaronmeade92/final-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (63 loc) · 2.25 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css">
<meta charset="utf-8">
<title>One Drink Away</title>
</head>
<body>
<main class= "main-container">
<div class= "header-spacer"></div>
<div class="header">
<div id="logo">OneDrinkAway</div>
<div id="title">Going out?</div>
<div id="hright">
<a href="index.html">
<div class="fa fa-home" id="home-button"></div>
</a>
</div>
</div>
<section class="button-container">
<a href="pregame.html">
<div class="choice">
<div class="choice-top">
<div class="icon fa fa-thumbs-o-up choice-descriptionIcon"></div>
<div class="choice-descriptionText">Pre-Game</div>
</div>
<div class="choice-bottom">Be a responsible adult and track your drinking!</div>
</div>
</a>
<a href="drunk-o-meter.html">
<div class="choice">
<div class="choice-top">
<div class="icon fa fa-history choice-descriptionIcon"></div>
<div class="choice-descriptionText">Your Drink Data</div>
</div>
<div class="choice-bottom">A few fancy charts and graphs to self-diagnose...yourself.</div>
</div>
</a>
<a href="rides.html">
<div class="choice">
<div class="choice-top">
<div class="icon fa fa-taxi choice-descriptionIcon"></div>
<div class="choice-descriptionText">Get Home Safe!</div>
</div>
<div class="choice-bottom">Please don't try to drive yourself.</div>
</div>
</a>
<a href="about.html">
<div class="choice">
<div class="choice-top">
<div class="icon fa fa-id-card choice-descriptionIcon"></div>
<div class="choice-descriptionText">About Us</div>
</div>
<div class="choice-bottom">Who made this app?</div>
</div>
</a>
</section>
</main>
<footer></footer>
</body>
</html>