-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (31 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bicycle Survey</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h2>Bicycle Survey</h2>
<form>
<div class="form-group">
<label for="sel1">What Is Your Favbourite Bike Brands?</label>
<select class="form-control" id="sel1">
<option>Specialized</option>
<option>Giant</option>
<option>Trek</option>
<option>Cannondale</option>
<option>Merida</option>
<option>Cervelo</option>
<option>Colnago</option>
</select>
</div>
<button type="submit" class="btn btn-default" onclick="alert('Your selection was recorded. \n\nThank you for your submittion! \n')">Submit</button>
</form>
</div>
</body>
</html>