-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlists.html
76 lines (63 loc) · 2.31 KB
/
lists.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<script src="jquery_min.js"></script>
<meta charset="UTF-8">
<title>Select magic</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css"
integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<body class="bg-light">
</h3>
<div class="container" style="padding-top: 90px;">
<form>
<h2>
<span class="nowrap"> Please estimate the hotel service: </span>
</h2>
<div style="padding-bottom: 10px;">
<label for="dropdown1">Choose the answer:</label>
<select id="dropdown1" class="custom-select">
<option selected>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
<h2>
<br>
<span class="nowrap"> Please estimate the hotel's breakfasts: </span>
</h2>
<div style="padding-bottom: 10px;">
<label for="dropdown2">Choose the answer:</label>
<select id="dropdown2" class="custom-select">
<option selected>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
<h2>
<br>
<span class="nowrap"> Please estimate your overall impression: </span>
</h2>
<div style="padding-bottom: 10px;">
<label for="dropdown2">Choose the answer:</label>
<select id="dropdown2" class="custom-select">
<option selected>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
<br>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</div>
</body>
</html>