-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (79 loc) · 2.73 KB
/
Copy pathindex.html
File metadata and controls
83 lines (79 loc) · 2.73 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Math website</title>
<meta name="viwport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<meta name="refresh" content="5">
<link rel="stylesheet" type="text/css" href="styling.css">
</head>
<body>
<div id="container">
<div id="header">
<div id="brand">
<h1><a href="#">Math the fun way</a></h1>
</div>
<div id="searchbox">
<form method="get">
<input type="text" class="text">
<input type="submit" value="search in topics" class="submit">
</form>
</div>
<div class="clear">
</div>
<div id="menu">
<ul>
<li><a href="#" class="active">HOME</a></li>
<li><a href="#">ONLINE TUTORIAL</a></li>
<li><a href="#">GET PRIVATE TOTOR</a></li>
<li><a href="#">SIGN UP</a></li>
<li><a href="#"> CONTACT US</a></li>
</div>
<div id="introduction">
<h1>Do you need help with math ?</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
</div>
<div id="leftsidebar" class="sidebar">
<h3> Go To:</h3>
<ul>
<li><a href="#"> Year 1 free lecture</a></li>
<li><a href="#"> Year 2 free lecture</a></li>
<li><a href="#"> Year 3 free lecture</a></li>
<li><a href="#"> Year 4 free lecture</a></li>
<li><a href="#"> Year 5 free lecture</a></li>
<li><a href="#"> Year 6 free lecture</a></li>
<li><a href="#"> Year 7 free lecture</a></li>
<li><a href="#"> Year 8 free lecture</a></li>
<li><a href="#"> Year 9 free lecture</a></li>
<li><a href="#"> Year 10 free lecture</a></li>
<li><a href="#"> Year 11 free lecture</a></li>
<li><a href="#"> Year 12 free lecture</a></li>
</ul>
</div>
<div id="rightsidebar" class="sidebar">
<h3>Why us ?</h3>
<ul>
<li><a href="#">Our teacher are available any time.</a></li>
<li><a href="#">Available on laptop, Tablets and Phone</a></li>
<li><a href="#">30 day Money Back Guarantee</a></li>
<li><a href="#">Interactive game for a 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 class="clear"> </div>
<footer class="footer">
<div>
<p>Company name copyright © 2019-2020</p>
</div>
</footer>
</div>
</div>
</div>
</body>
</html>