-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (78 loc) · 3.74 KB
/
index.html
File metadata and controls
85 lines (78 loc) · 3.74 KB
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
<!--index.html-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Maths Website</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<link rel="stylesheet" href="styling.css">
</head>
<body>
<div id="container">
<div id="header">
<div id="brand">
<h1><a href="#">Maths the Fun Way</a></h1>
</div>
<div id="searchBox">
<form method="get">
<input type="text" class="text">
<input type="submit" value="Search a topic" class="submit">
</form>
</div>
<div class="clear">
</div>
</div>
<div id="menu">
<a href="#" class="active">Home</a>
<a href="#">Online Tutorials</a>
<a href="#">Get a private tutor</a>
<a href="#">Sign up</a>
<a href="#">Contact us</a>
</div>
<div id="introduction">
<h3>Do you need help with Maths?</h3>
<p>Our website uses an interactive methodology of teaching Maths using the latest web technologies. Your learning experience with us is guaranteed to be intuitive and fun. You will have fun while learning. This is the secret of our outstanding results. Check reviews from our students.</p>
</div>
<div class="sidebars">
<div class="sidebarWrapper">
<div id="leftsidebar" class="sidebar">
<h3>Go to:</h3>
<ul>
<li><a href="#">Year 1 Free Lessons.</a></li>
<li><a href="#">Year 2 Free Lessons.</a></li>
<li><a href="#">Year 3 Free Lessons.</a></li>
<li><a href="#">Year 4 Free Lessons.</a></li>
<li><a href="#">Year 5 Free Lessons.</a></li>
<li><a href="#">Year 6 Free Lessons.</a></li>
<li><a href="#">Year 7 Free Lessons.</a></li>
<li><a href="#">Year 8 Free Lessons.</a></li>
<li><a href="#">Year 9 Free Lessons.</a></li>
<li><a href="#">Year 10 Free Lessons.</a></li>
<li><a href="#">Year 11 Free Lessons.</a></li>
<li><a href="#">Year 12 Free Lessons.</a></li>
</ul>
</div>
</div>
<div class="sidebarWrapper">
<div id="rightsidebar" class="sidebar">
<h3>Why us?</h3>
<ul>
<li><a href="#">Our teachers are available any time.</a></li>
<li><a href="#">Available on laptop, Tablets and Phones.</a></li>
<li><a href="#">30 day Money Back Guarantee.</a></li>
<li><a href="#">Interactive games for an enjoyable learning experience.</a></li>
<li><a href="#">Learn at your own pace.</a></li>
<li><a href="#">Complete curriculum.</a></li>
</ul>
</div>
</div>
</div>
<div class="clear"></div>
<footer class="footer">
<div>
<p>Company name. Copyright © 2010-2015</p>
</div>
</footer>
</div>
</body>
</html>