-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdares.html
More file actions
170 lines (138 loc) · 4.58 KB
/
dares.html
File metadata and controls
170 lines (138 loc) · 4.58 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<html>
<head>
<div id="navbar">
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">The Game Of Dares</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="/index.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="/events.html">Events</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/dares.html">Dares</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/lvl.html">Account</a>
</li>
</ul>
</div>
</nav>
</div>
<style>
body {
background-image: url("https://image.freepik.com/free-vector/pastel-color-artistic-watercolor-background_1116-207.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
Ul { text-align: left}
Li { font-size:22px;}
#points {
text-align: right;
}
</style>
<title>ScriptEd Hackathon SF BAY</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Your Bootstrap-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<!-- Your CSS Linked Below-->
<link rel="stylesheet" href="/styles.css">
<!-- jQuery Linked Below-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Your Javascript Linked Below-->
<script src="/darejs.js" defer></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-6">
<h1>Let The Dares BEGIN!</h1>
</div>
<div class="col-md-6" id="points">
<h1 id="ptBox"> </h1>
</div>
</div>
<div class="row">
<div class="col-md-3">
<div id="thrill">
<h2>
Try A Thrill
</h2>
<ul>
<li>
<input type="checkbox"> Go Skydiving
</li>
<li>
<input type="checkbox"> Visit A New City
</li>
<li>
<input type="checkbox"> Parachute Off A Cliff At Your Nearest Beach
</li>
<div class="row"></div>
<div class="col-md"></div>
</ul>
</div>
</div>
<div class="col-md-3">
<div id="kind">
<h2>
Act Of Kindness
</h2>
<ul>
<li>
<input type="checkbox"> Give Food To Someone In Need
</li>
<li>
<input type="checkbox"> Donate Clothes To Someone Who Is Cold
</li>
<li>
<input type="checkbox"> Donate $20 To Refugees
</li>
</ul>
</div>
</div>
<div class="col-md-3">
<div id = "change">
<h2>
Making A Change
</h2>
<ul>
<li>
<input type="checkbox">Attend A Gun Control Rally/Protest
</li>
<li>
<input type="checkbox"> Attend The Stand Up for Women's Lives March
</li>
</ul>
</div>
</div>
<div class="col-md-3">
<div id="fun">
<h2>
Something Fun
</h2>
<ul>
<li>
<input type="checkbox"> Eat a Corilina Reaper Pepper ;)
</li>
<li>
<input type="checkbox"> Spicy Noodle Challenge
</li>
<li>
<input type="checkbox"> Walk On Legos
</li>
</ul>
</div>
</div>
</div>
</div>
</body>
</html>