-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (46 loc) · 1.65 KB
/
index.html
File metadata and controls
51 lines (46 loc) · 1.65 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Web Tutorials</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
</head>
<body>
<nav>
<ul class="navMenu">
<li class="menuActive"><a href="index.html">Main page</a></li>
<li><a href="html5.html">HTML5</a></li>
<li><a href="javascript.html">JavaScript</a></li>
<li><a href="ajax.html">Ajax</a></li>
<li><a>Quizzes</a>
<ul class="dropDownMenu">
<li><a href="quiz1.html">Quiz1</a></li>
<li><a href="quiz2.html">Quiz2</a></li>
<li><a href="quiz3.html">Quiz3</a></li>
</ul>
</li>
</ul>
</nav>
<div class="banner">
<h2>Web Tutorials and Quizzes</h2>
</div>
<div class="description">
<p>
Learn how to use HTML5, CSS, JavaScript and other technologies to create responsive and adaptive web applications
</p>
</div>
<div class="content">
<h2>Proceed to tutorials and start learning Web Technologies right now</h2>
<a href="html5.html"><button class="mainPageButton">Start tutorial</button></a>
</div>
<div class="quizMain">
<h2>To test your knowledge go to our quizzes</h2>
<a a href="quiz1.html"><button class="mainPageButton">Start quiz</button></a>
</div>
<footer>
© Kirill Golubev 2018
</footer>
</body>
</html>