-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsp_home.html
111 lines (107 loc) · 3.81 KB
/
sp_home.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html>
<head>
<!--
New Perspectives on HTML5 and CSS3, 7th Edition
Tutorial 3
Case Problem 1
Slate & Pencil Home Page
Author: Brandon Berney
Date: Feb 10 2019
Filename: sp_home.html
-->
<meta charset="utf-8" />
<title>Slate & Pencil Tutoring</title>
<link href="sp_base.css" type="text/css" rel="stylesheet" />
<link href="sp_styles.css" type="text/css" rel="stylesheet" />
<link href="sp_layout.css" type="text/css" rel="stylesheet" />
</head>
<body>
<header class="row">
<img src="sp_logo.png" alt="Slate & Pencil Tutoring" />
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Our Tutors</a></li>
<li><a href="#">Pricing</a></li>
<li><a href="#">Testimonials</a></li>
<li><a href="#">Your Account</a></li>
<li><a href="#">Chat Online</a></li>
</ul>
</nav>
</header>
<nav class="horizontal">
<ul class="row">
<li><a href="#">Math</a></li>
<li><a href="#">Science</a></li>
<li><a href="#">English</a></li>
<li><a href="#">Languages</a></li>
<li><a href="#">History</a></li>
<li><a href="#">Sociology</a></li>
<li><a href="#">Art</a></li>
<li><a href="#">Other</a></li>
</ul>
</nav>
<ul id="topics" class="row">
<li><img src="sp_topic1.png" alt="" />
<p>Our tutors have advanced degrees, supplemented with real-world
experience to help you meet your education goals.</p>
</li>
<li><img src="sp_topic2.png" alt="" />
<p>Every session is just you and your instructor and
there is always someone online to help you. 24/7.</p>
</li>
<li><img src="sp_topic3.png" alt="" />
<p>We cover it all: From from Biochemistry to
Beethoven. We can also help you prep for the ACT, SAT, and AP
exams.</p>
</li>
<li><img src="sp_topic4.png" alt="" />
<p>We keep our prices low. Sign up for one-time assistance or enroll
for a full semester at greatly reduced rates.</p>
</li>
</ul>
<hr />
<ul id="comments">
<li><img src="sp_student1.png" alt="" />
<p>“Thanks to <em>Slate & Pencil</em> I passed AP Calculus
with a 5.”<br />
<br />
— Kevin, 12th Grade, Utah</p>
</li>
<li><img src="sp_student2.png" alt="" />
<p>“I use <em>Slate & Pencil</em> all of the time to
supplement my lectures and course notes.”<br />
<br />
— Paul, 12th Grade, Texas</p>
</li>
<li><img src="sp_student3.png" alt="" />
<p>“I'm making the honor roll for the first time thanks to
your wonderful service and help!”<br />
<br />
— Lisa, 11th Grade, Florida</p>
</li>
<li><img src="sp_student4.png" alt="" />
<p>“Geometry is a breeze after working online with your great
tutors and review materials.”<br />
<br />
— Karen, 9th Grade, Nebraska</p>
</li>
<li><img src="sp_student5.png" alt="" />
<p>“I've seen a great improvement in my use of study time and
I retain more than ever before.”<br />
<br />
— Gianna, 10th Grade, Vermont</p>
</li>
<li><img src="sp_student6.png" alt="" />
<p>“After using <em>Slate & Pencil</em>, my SAT and ACT
scores went through the roof!!!”<br />
<br />
— Todd, 11th Grade, Illinois</p>
</li>
</ul>
<footer>
Slate & Pencil Tutoring; © 2017 All Rights Reserved
</footer>
</body>
</html>