-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (30 loc) · 1.31 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
<!DOCTYPE html>
<html lang="fr">
<head>
<title>Monsters</title>
<link href="./index.css" media="screen" rel="stylesheet" />
</head>
<body>
<h1>Welcome to this short JQuery / JavaScript lesson</h1>
<img src="ext/hero.png" />
<p>If you want to use it as an exercise : </p>
<ul>
<li>first, watch the <a href="level_8.html">final result</a>.</li>
<li>visit every level page to observe what's going on.</li>
<li>go and watch level 1 page</li>
<li>don't look at the html / css code, and try to code something similar by yourself.</li>
<li>when it's done, or if you are stuck, you can look at source files</li>
<li>don't go to level 2 until you understand every line in level 1 files</li>
<li>do the same for the following levels</li>
</ul>
<h2><a href="level_1.html">Go to level 1</a></h2>
<h2><a href="level_2.html">Go to level 2</a></h2>
<h2><a href="level_3.html">Go to level 3</a></h2>
<h2><a href="level_4.html">Go to level 4</a></h2>
<h2><a href="level_5.html">Go to level 5</a></h2>
<h2><a href="level_6.html">Go to level 6</a></h2>
<h2><a href="level_7.html">Go to level 7</a></h2>
<h2><a href="level_8.html">Go to level 8</a></h2>
<a href="http://www.toxicode.fr" id="logo"><img src="./ext/toxicode_logo.png" /></a>
</body>
</html>