-
Notifications
You must be signed in to change notification settings - Fork 1
/
index2.html
49 lines (41 loc) · 1.72 KB
/
index2.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
<html>
<html lang="en">
<head>
<title>State and local Government areas in Nigeria (dropdown)</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" />
<style>
html,
body {
height: 100%;
align-items: center;
justify-content: center;
display: flex;
}
</style>
</head>
<body>
<div class="container"></div>
<form>
<div class="form-group">
<label class="control-label">Class</label>
<select onchange="selectSubject(this);" name="classs" id="classs" class="custom-select">
<option value="" selected="selected">- Select -</option>
<option value="Nursery">Nursery</option>
<option value="Primary">Primary</option>
<option value="JSS">Junior Secondary</option>
<option value="SSS">Senior Secondary</option>
</select>
</div>
<div class="form-group">
<label class="control-label">Subject</label>
<select name="subject" id="subject" class="custom-select select-subject" required>
</select>
</div>
</form>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
<script src="js/subject.js"></script>
</body>
</html>