-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathLevel2.html
47 lines (43 loc) · 1.75 KB
/
Level2.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>PairUp</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="GirlsDevelopit, GDISF, SanFrancisco, code, women who code">
<meta name="author" content="GirlsDevelopit, GDISF, SanFrancisco, code, women who code, exercises to code, pairup, pairupwomen, pairupgirls, girlspairup">
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="share.js"></script>
<!-- Le styles -->
<link href="main.css" rel="stylesheet">
<link href="responsive.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="../assets/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="container-narrow">
<a class="btn btn-medium btn-primary" href="index.html">HOME</a>
<a class="btn btn-medium btn-success" href="Level1.html">LEVEL 1</a>
<a class="btn btn-medium btn-danger" href="Level3.html">LEVEL 3</a>
<div class="masthead">
<h3 class="muted">Level 2: Basic Javascript</h3>
</div><!-- /masthead -->
<div class="row-fluid marketing">
<div class="span12">
<hr>
<h4>Basic Javascript</h4>
<p>In order of difficulty:</p>
<ul>
<li><a href="exercises/calculator.html">The Calculator</a> (Functions)</li>
<li><a href="exercises/wordguesser.html">Word Guesser</a> (Loops/Arrays/Conditionals)</li>
</ul>
<hr>
</div><!-- /span12 -->
</div><!-- /row-fluid marketing -->
</div> <!-- /container -->
</body>
</html>