forked from ntschutta/html5_workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (48 loc) · 2.5 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
<!DOCTYPE html>
<html>
<head>
<title>HTML5 Workshop Helpful Links</title>
</head>
<body>
<h1>Potentially Useful Links</h1>
<h2>Documentation</h2>
<ul>
<li><a href="http://diveintohtml5.org/">Dive Into HTML5</a></li>
<li><a href="http://www.modernizr.com/">Modernizr</a></li>
<li><a href="https://developer.mozilla.org/en/canvas_tutorial">Mozilla Canvas tutorial</a></li>
<li><a href="http://caniuse.com/">When can I use...</a></li>
<li><a href="http://fmbip.com/#target-selector">findmebyIP HTML5 Support</a></li>
<li><a href="http://html5test.com/">HTML5 Test</a></li>
<li><a href="http://html5demos.com/">HTML 5 Demos and Examples</a></li>
<li><a href="http://www.apple.com/html5/">HTML5 At Apple</a></li>
<li><a href="http://www.chromeexperiments.com/">Chrome Experiments</a></li>
<li><a href="http://www.hongkiat.com/blog/48-excellent-html5-demos/">Flash Killing Demos</a></li>
<li><a href="http://people.mozilla.com/~prouget/demos/">Yet More Demos</a></li>
<li><a href="http://jquery.com/">jQuery main page</a></li>
<li><a href="http://docs.jquery.com/Main_Page">jQuery Main Docu Page</a></li>
<li><a href="http://api.jquery.com/">jQuery API Page</a></li>
</ul>
<h2>Lab Files</h2>
<ul>
<li><a href="labs/detection.html">Detecting HTML5 Features</a></li>
<li><a href="labs/detection_modernizr.html">Detecting HTML5 Features - Modernizr</a></li>
<li><a href="labs/semantic_elements.html">HTML5 Adds New Semantic Elements</a></li>
<li><a href="labs/forms.html">Forms</a></li>
<li><a href="labs/numbers.html">Fun With Numbers</a></li>
<li><a href="labs/canvas_rings.html">Canvas - Olympic Rings</a></li>
<li><a href="labs/geolocation.html">Geolocation</a></li>
<li><a href="labs/localstorage_form.html">Exploring Local Storage</a></li>
</ul>
<h2>Completed Lab Files</h2>
<ul>
<li><a href="labs_finished/detection.html">Detecting HTML5 Features</a></li>
<li><a href="labs_finished/detection_modernizr.html">Detecting HTML5 Features - Modernizr</a></li>
<li><a href="labs_finished/semantic_elements.html">HTML5 Adds New Semantic Elements</a></li>
<li><a href="labs_finished/forms.html">Forms</a></li>
<li><a href="labs_finished/numbers.html">Fun With Numbers</a></li>
<li><a href="labs_finished/canvas_rings.html">Canvas - Olympic Rings</a></li>
<li><a href="labs_finished/geolocation.html">Geolocation</a></li>
<li><a href="labs_finished/localstorage_form.html">Exploring Local Storage</a></li>
</ul>
</body>
</html>