-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (60 loc) · 2.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>BeCode/JavaScript for the Web Exercise</title>
<link rel="icon" href="./src/_shared/img/becode-seal.png" />
<!-- Font Awesome -->
<link rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/"
crossorigin="anonymous">
</head>
<body>
<div class="container">
<header>
<h1>BeCode / JavaScript for the Web</h1>
<h2>
<strong><i class="fas fa-arrow-right"></i> Welcome <i class="fas fa-arrow-left"></i></strong>
</h2>
</header>
<nav>
<ul>
<li class="selected"></a>Home</a></li>
<li class="drop-down"><a href="#">Series 1</a>
<ul class="sub-menu">
<li><a href="src/pages/js-1-1.html">Color selector</a></li>
<li><a href="src/pages/js-1-2.html">Calculator</a></li>
<li><a href="src/pages/js-1-3.html">Super Vilain application form</a></li>
<li><a href="src/pages/js-1-4.html">Age calculator</a></li>
<li><a href="src/pages/js-1-5.html">Cat cycler</a></li>
<li><a href="src/pages/js-1-6.html">Cat randomizer</a></li>
<li><a href="src/pages/js-1-7.html">Troll button</a></li>
</ul>
</li>
<li class="drop-down"><a href="#">Series 2</a>
<ul class="sub-menu">
<li><a href="src/pages/js-2-1.html">Improved cat cycler</a></li>
<li><a href="src/pages/js-2-2.html">Beer displayer</a></li>
<li><a href="src/pages/js-2-3.html">Cookie clicker</a></li>
<li><a href="src/pages/js-2-4.html">Character Manager</a></li>
</ul>
</li>
</ul>
</nav>
<div class="content">
<p>
<i class="fas fa-arrow-right"></i>
<p>
<strong>Becode exercises about javascript for the web: use of Parcel.JS
and strict mode, forms, API requests... and cats, a lot of cats!</strong>
</p>
<div><img src="./src/img/cats-everywhere.jpg" alt="meme about cats"/></div>
<i class="fas fa-arrow-left"></i>
</p>
</div>
</div>
<script src="./src/scripts/script.js"></script>
</body>
</html>