-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathteachersold.html
63 lines (58 loc) · 1.53 KB
/
teachersold.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
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<title>My subjects</title>
<link rel="stylesheet" href="base.css">
<script defer rel="script" src="teachers.js"></script>
</head>
<body style="background-color:lightblue;">
<div class="heading ">
<header>
<h1><a href="index.html ">Jayant's website</a></h1>
</header>
</div>
<div class="left-bar ">
<ul>
<li>
<a href="page2.html ">My hobbies</a>
</li>
<li>
My teachers
</li>
<li>
<a href="aboutme.html">About me</a>
</li>
</ul>
</div>
<div class="main-section ">
<h2>My subjects</h2>
<p> I take the following subjects at school in 11th grade:</p>
<ol>
<li>English</li>
<li>AP Physics 1</li>
<li>AP US History</li>
<li>AP Computer Science Principles</li>
<li>Symphonic Band</li>
<li>AP Calculus BC</li>
</ol>
</header>
<main>
<h2>My teachers</h2>
<table>
<tr>
<th>Teacher Name</th>
<th>Description</th>
</tr>
<tr>
<td>
<ul id="member" class="left"></ul>
</td>
<td>
<ul id="text"></ul>
</td>
</tr>
</table>
</main>
</div>
</body>
</html>