-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
90 lines (64 loc) · 3.21 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<title>Welcome to JS Quizes</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link href='http://fonts.googleapis.com/css?family=Noto+Serif:400,700,400italic,700italic|Open+Sans:700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="stylesheets/style.css?ver=1.0">
<!--[if lte IE 8]><link rel="stylesheet" href="stylesheets/ie.css?ver=1.0"><![endif]-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="javascripts/jquery-1.9.1.min.js"><\/script>')</script>
<script src="javascripts/functionality.js"></script>
<script src="javascripts/modernizr.js"></script>
</head>
<body class="index">
<header class="header content-block clearfix" role="banner"><div class="wrapper">
<h1 class="logo"><a href="index.html" rel="home"><span>JS Quizes</span></a></h1>
<a id="show-nav" class="button icon-menu show-nav" href="#"><span>Menu</span></a>
<nav id="nav" class="nav" role="navigation">
<h1 class="visuallyhidden">Main Navigation</h1>
<ul class="list-primary-nav clearfix">
<li><a href="index.html">Home</a></li>
<li><a href="https://github.com/PeteSchuster/js-quizzes">GitHub</a></li>
<li><a href="https://github.com/PeteSchuster/js-quizzes/archive/master.zip">Download</a></li>
</ul>
</nav><!--/end nav-->
</div></header><!--/end .header-->
<main class="content clearfix" role="main">
<div class="content clearfix" role="main">
<div class="content-block"><div class="wrapper">
<h1>Level 1 - DOM Tree Traversal</h1>
<ul>
<li><a href="l1-grabbing-elements.html">Grabbing Elements</a></li>
<li><a href="l1-grabbing-elements2.html">Grabbing Specific Elements</a></li>
<li><a href="l1-grabbing-parents.html">Grabbing Parents</a></li>
<li><a href="l1-grabbing-prev-next-elements.html">Grabbing Next/Prev Elements</a></li>
</ul>
</div></div><!--/end .content-block-->
<div class="content-block"><div class="wrapper">
<h1>Level 2 - Getting/Storing Data</h1>
<ul>
<li><a href="l2-data-attributes.html">Data Attributes</a></li>
<li><a href="l2-create-data-content.html">Data Content</a></li>
<li><a href="l2-create-data-content2.html">Data Content 2</a></li>
</ul>
</div></div><!--/end .content-block-->
</div><!--/end .content-->
</main><!--/end .content-->
<footer class="footer content-block" role="contentinfo"><div class="wrapper">
<nav>
<h1 class="visuallyhidden">Footer Navigation</h1>
<ul class="list-footer-nav clearfix">
<li><a href="index.html">Home</a></li>
<li><a href="https://github.com/PeteSchuster/js-quizzes">GitHub</a></li>
<li><a href="https://github.com/PeteSchuster/js-quizzes/archive/master.zip">Download</a></li>
</ul>
</nav>
<p>Copyright 2013. All rights reserved. <a href="#">Sitemap</a>.</p>
</div></footer><!--/end .footer-->
</body>
</html>