-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathindex.html
56 lines (53 loc) · 1.63 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
<html>
<head>
<link rel="stylesheet" href="css/style.css" />
<title>
Teachers Spot
</title>
</head>
<body>
<div id="hdr">
<p id="hme" class="hdrele">Home</p>
<p id="cln" class="hdrele">Class Note</p>
<p id="asn" class="hdrele">Assignment</p>
<p id="sbj" class="hdrele">Subject</p>
</div>
<div id="main">
<img src="images/graduant.png" id="mimg" />
<p id="pos">Hi, <strong>Code Noob!</strong></p>
<h1 id="posTwo">Welcome to Asclepius Class</h1>
<i id="posThree"> Create Your Class Notes Here</i>
</div>
<div id="sec">
<b id="ss">Select Subject: </b>
<select placeholder="--Enter Subject--" id="sso" >
<option>--Subjects--</option>
<option>English</option>
<option>Mathematics</option>
<option>Biology</option>
<option>Physics</option>
<option>Geography</option>
<option>Chemistry</option>
<option>Computer</option>
<option>Agriculture</option>
</select><br><br>
<b id="sc">Select Class: </b>
<select placeholder="--Enter Class--" id="ssot" >
<option>--class--</option>
<option>Jss 1</option>
<option>Jss 2</option>
<option>Jss 3</option>
<option>SS 1</option>
<option>SS 2</option>
<option>SS 3</option>
</select><br><br>
<b id="mea">Message Area: </b>
<textArea id="ta" placeholder="enter message here...."></textArea><br>
<button id="btn">Send</button>
</div>
<hr id="rt">
<img src="images/lecturer.jpg" id="limg" />
<h4 id="cnn">Code Noob</h4>
<p id="cnntw">Teacher</p>
</body>
</html>