forked from AnonymousFunction/anonymousfunction.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (89 loc) · 2.04 KB
/
Copy pathindex.html
File metadata and controls
93 lines (89 loc) · 2.04 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
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
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Anonymous Function</title>
<!-- TODO: Write something sweet here -->
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<!-- <link rel="stylesheet" href="css/style.css" /> -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-33217753-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>
</head>
<body>
<style>
body {
padding: 0;
}
header {
background-color: rgb(57, 159, 199);
position: absolute;
top: 0;
left: 0;
width: 100%;
text-align: center;
}
header #title {
color: white;
font-family: monospace;
font-weight: normal;
text-shadow: 2px 2px #414141;
height: 40px;
font-size: 2.0em;
padding-top: 5px;
}
header nav {
background-color: rgb(206, 204, 204);
box-shadow: 0 4px 2px -2px gray;
}
header nav ul {
list-style: none;
display: inline;
padding: 0;
}
header nav ul li {
display: inline;
}
header nav ul li:not(:last-child):after
{
padding: 0 10px;
content: ' |';
}
a {
color: #414141;
text-decoration: none;
font-family: sans-serif;
}
#wrapper {
margin-top: 70px;
}
</style>
<header>
<div id="title">Anonymous Function</div>
<nav>
<ul>
<li><a href="#/home">HOME</a></li>
<li><a href="#/code">CODE</a></li>
<li><a href="#/fun">FUN</a></li>
<li><a href="#/about">ABOUT</a></li>
</ul>
</nav>
</header>
<div id="wrapper">
<div id="content">
STUFF GOES HERE!
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
<script src="js/af.js" defer async></script>
</body>
</html>