-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.html
40 lines (35 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
<!DOCTYPE html>
<html lang="en">
<head>
<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>
<script src="//geodata.solutions/includes/countrystatecity.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-sm-4">
<h3>Country</h3>
<select name="country" class="countries form-control" id="countryId">
<option value="">Select Country</option>
</select>
</div>
<div class="col-sm-4">
<h3>State</h3>
<select name="state" class="states form-control" id="stateId">
<option value="">Select State</option>
</select>
</div>
<div class="col-sm-4">
<h3>City</h3>
<select name="city" class="cities form-control" id="cityId">
<option value="">Select City</option>
</select>
</div>
</div>
</div>
</body>
</html>