-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·70 lines (58 loc) · 2.34 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>OSU Tutors</title>
<link rel="stylesheet" href="style.css">
<script src="realIndex.js" charset="utf-8" defer></script>
</head>
<body>
<header>
<div class="header-container">
</div>
<h1 class="site-title"><a href="#">OSU Tutors</a></h1>
<div class="navbar">
<a class="active" href="#home">Home</a>
<a href="tutors.html">Tutors</a>
<a href="#Contact">Contact</a>
<a href="about.html">About</a>
</div>
</header>
<main class="content">
<div class="sign-in-container">
<div class="qualified-content">
<h1>Find a Qualified Tutor in Seconds!</h1>
</div>
<div class="sign-in-title">
<h1>Get Started</h1>
<h3>Get help in a few easy steps</h3>
<button id="tutor-finder-button" class="tutor-finder-button">Find a tutor</button>
<button id="sign-in-button" class="sign-in-button">Sign in</button>
</div>
</div>
<div class="main-content-container">
<div class="main-content">
<h1>Get online tutoring now</h1>
<p>Are you looking for a high quality tutor?</p>
<p>We have thousands of tutors with years of experience in their respective fields. Whether you're failing in math, hoping to get a 4.0, or simply wanting to improve your writing skills we are here for you.</p>
<p>Our online tutors know how to to teach and have been doing so for years. Across our tutors there is a cumulative 100,000 hours of teaching experience. Most have degrees from very reputable universities and are waiting to share their knowledge.</p>
<p>In only 24 hours, you can find a perfect tutor who will guide you or your child to success. We guarantee improvement in only two weeks from our hand selected tutors.</p>
</div>
<div class="main-content">
<img src="images/student.jpg" alt="Picture of student" id="student-image">
</div>
</div>
<div class="banner1">
<div class="banner-title">
<h1>Online tutors available 24/7</h2>
</div>
</div>
<div class="footer-container">
<div class="footer">
<h1>Footer</h1>
<a href="about.html">About Us</a>
</div>
</div>
</main>
</body>
</html>