-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
43 lines (41 loc) · 1.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>👊 Fight Boredom</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css"
integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body style="background-color: #333">
<section class="my-md-4 py-md-4">
<div class="container">
<div class="row">
<div class="col-lg-8 offset-lg-2 text-white">
<h2 class="text-primary display-4">👊 Fight Boredom</h2>
<h3 style="color: #bbb">Let's find you something to do ✔!</h3>
<form class="mt-2" id="activityForm">
<div class="form-group">
<label for="activity-type"></label>
<select name="activity-type" id="activity-type" class="form-control">
<option value="social">🥳 Social</option>
<option value="recreational">⚽ Recreational</option>
<option value="busywork">😬 Busy Work</option>
<option value="relaxation">😙 Relaxation</option>
<option value="music">🎵 Music</option>
<option value="">🎲 Random</option>
</select>
</div>
<button type="submit" class="btn btn-block btn-primary">Find Activity</button>
</form>
</div>
<div class="col-lg-8 offset-lg-2">
<div id="output"></div>
</div>
</div>
</div>
</section>
<script src="main.js"></script>
</body>
</html>