-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·59 lines (45 loc) · 1.53 KB
/
index.html
File metadata and controls
executable file
·59 lines (45 loc) · 1.53 KB
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
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="../src/css/jquery.scrollSections.css">
<script src="js/vendor/modernizr-2.5.3.min.js"></script>
</head>
<body>
<section id="home" class="scrollsections">
</section>
<section id="about" class="scrollsections">
<div class="filler"></div>
</section>
<section id="works" class="scrollsections">
</section>
<section id="contact" class="scrollsections">
</section>
<section id="other" class="scrollsections">
<div class="filler"></div>
</section>
<section id="clients" class="scrollsections">
</section>
<section id="bio" class="scrollsections">
</section>
<section id="networks" class="scrollsections">
</section>
<script src="js/vendor/jquery-1.7.2.min.js"></script>
<script src="js/plugins.js"></script>
<script src="../src/js/jquery.scrollSections.js"></script>
<script>
$(function() {
$('section.scrollsections').scrollSections();
});
</script>
</body>
</html>