-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (52 loc) · 1.13 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
* {
margin: 0;
padding: 0;
box-sizing: content-box;
}
.header h1 {
width: 100%;
text-align: center;
margin-left: 25px;
font: bold;
padding: 25px;
font-family: Verdana, Geneva, Tahoma, sans-serif, bold;
background-color: thistle;
color: sienna;
}
#drop {
background-color: lavenderblush;
font-size: larger;
font-family: Verdana, Geneva, Tahoma, sans-serif;
margin: 30px;
}
.descrition {
background-color: lightyellow;
color: sienna;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: large;
margin-left: 40px;
}
</style>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="lib/jquery-3.5.1.min.js"></script>
<script defer="true" src="script.js"></script>
</head>
<body>
<div class="container">
<div class="header">
<h1>Dropdown List Items</h1>
</div>
<select id="drop" class="form-control">
<option>please select item</option>
</select>
<br>
<br>
<div class="descrition"></div>
</div>
</body>
</html>