-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2b.html
executable file
·58 lines (58 loc) · 1.76 KB
/
2b.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
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-2.0.2.min.js"></script>
<link href="bootstrap/css/bootstrap.css" rel="stylesheet">
<link href="css/flat-ui.css" rel="stylesheet">
<script src="js/bootstrap.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"/>
</head>
<body>
<div style="color: white; text-align: center; margin-top: 15%; font-size: 1em; margin-bottom: 7%">What do you want to explore?</div>
<div class="btn-group-vertical" style="margin-left: 10%; width: 80%;">
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary" style="font-size: 1.5em">
<input type="checkbox"> Homework
</label>
</div>
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary" style="font-size: 1.5em">
<input type="checkbox"> Outdoors
</label>
</div>
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary" style="font-size: 1.5em">
<input type="checkbox"> Crafts
</label>
</div>
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary" style="font-size: 1.5em">
<input type="checkbox"> Services
</label>
</div>
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary" style="font-size: 1.5em">
<input type="checkbox"> Geek Out
</label>
</div>
</div>
<ul class="pager" style="margin-left: 17%; margin-top: 10%">
<li class="previous">
<a href="1.html">
<span>
<i class="fui-arrow-left"></i>
Home
</span>
</a>
</li>
<li class="next">
<a href="2c.html">
<span>
Continue
<i class="fui-arrow-right"></i>
</span>
</a>
</li>
</ul>
</body>
</html>