-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
43 lines (40 loc) · 1.64 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
<!doctype html>
<html>
<head>
<title>IndrekV</title>
<meta content="">
<link href="http://fonts.googleapis.com/css?family=Pacifico" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Arimo" rel="stylesheet" type="text/css">
<link href="css/styles.css" rel="stylesheet" />
</head>
<body>
<aside>
<img src="http://www.gravatar.com/avatar/c96256f1ecbe8390bf0f64fe6242f762.png" class="avatar"/>
<p class="name">IndrekV</p>
<h2>Faster HTML5 Apps<h2>
<ul id="menu">
<li><a class="section" href="talk/index.html">Slides</a></li>
<li><a class="section" href="#">Demos</a>
<ul class="demos">
<li><a class="demo-link" href="html5demos/display.html">Display</a></li>
<li><a class="demo-link" href="html5demos/dom_manipulation.html">DOM editing</a></li>
<li><a class="demo-link" href="html5demos/selectors.html">Selectors</a></li>
</ul>
</li>
</ul>
</aside>
<div id="content"></div>
<script src="js/jquery.js"></script>
<script src="js/indrekv.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-36988802-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>