-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 1.02 KB
/
index.html
File metadata and controls
29 lines (29 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<title>My Dropdown</title>
<link rel="stylesheet" href="css/style.css"/>
<script language="javascript" type="text/javascript" src='js/jquery-1.7.2.min.js'></script>
<script type="text/javascript" type="text/javascript" src='js/script.js'></script>
</head>
<body onload="count()">
<div class="main">
<div class="content">
<div class="selectBox">
<div class="box">
<input type="text" placeholder="*Your email address">
</div>
</div>
<select id="multiselect" multiple="multiple">
<option id="ot1">Option No. 1</option>
<option id="ot2">Option No. 2</option>
<option id="ot3">Option No. 3</option>
<option id="ot4">Option No. 4</option>
<option id="ot5">Option No. 5</option>
</select>
<div id="addSelectbox"></div>
<div id="addSelectbox1"></div>
</div>
</div>
</body>
</html>