-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (58 loc) · 2.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Excuser</title>
</head>
<body>
<nav class="navbar">
<div class="nav-section1">
<h1>Get Random Excuses</h1>
<button class="hamburger">
<div class="bar"></div>
</button>
</div>
<div class="nav-section2">
<div class="btn-wrapper">
<div class="random-wrap"><button class="btn btn-random btn-random-widescreen">Random</button></div>
<div class="categories">
<p>By Category:</p>
<div class="cat-btn-wrap">
<button class="btn btn-cat btn-cat-widescreen family">Family</button>
<button class="btn btn-cat btn-cat-widescreen">Office</button>
<button class="btn btn-cat btn-cat-widescreen">Children</button>
<button class="btn btn-cat btn-cat-widescreen">College</button>
<button class="btn btn-cat btn-cat-widescreen">Party</button>
</div>
</div>
</div>
</div>
</nav>
<div class="mobile-nav">
<div class="wrap">
<button class="btn btn-random btn-random-mobile">Random</button>
<p>By Category:</p>
<div class="cat-btn-wrap-mobile">
<button class="btn btn-cat btn-cat-mobile family">Family</button>
<button class="btn btn-cat btn-cat-mobile">Office</button>
<button class="btn btn-cat btn-cat-mobile">Children</button>
<button class="btn btn-cat btn-cat-mobile">College</button>
<button class="btn btn-cat btn-cat-mobile">Party</button>
</div>
</div>
</div>
<header class="content-section">
<div class="content">
<div class="label">
<h4 class="label-text">Random</h4>
<hr class="divider"/>
</div>
<h3>"My brother can't pick up my in-laws at the airport, so I'll have to go in his place."</h3>
</div>
</header>
<script src="main.js"></script>
</body>
</html>