-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathteachers.html
63 lines (60 loc) · 1.85 KB
/
teachers.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 lang="en">
<head>
<meta charset="utf-8" />
<title>My subjects</title>
<link rel="stylesheet" href="css/base3.css">
<script defer rel="script" src="js/teachers3.js"></script>
</head>
<body>
<header>
<h1><a href="index.html ">Jayant's website</a></h1>
</header>
<nav>
<ul class="clearfix">
<li class="btn">
<a href="page2.html ">My hobbies</a>
</li>
<li class="active btn">
My teachers
</li>
<li class="btn">
<a href="aboutme.html">About me</a>
</li>
</ul>
</nav>
<div class="clearfix"></div>
<main>
<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>
<div class="clearing"></div>
<section>
<h2>My teachers</h2>
<section class="clearfix">
<ul class="box-small left nomargin headrow">
<h3 class="nobo">Teacher Name</h3>
</ul>
<ul class="box-large left nomargin headrow">
<h3 class="nobo">Description</h3>
</ul>
<ul class="box-small left nomargin headrow">
<h3 class="nobo">Image</h3>
</ul>
</section>
<section class="clearfix">
<ul id="member" class="left nomargin"></ul>
<ul id="text" class="left nomargin"></ul>
<ul id="pix" class="left nomargin"></ul>
</section>
</section>
</main>
</body>
</html>