-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 1.14 KB
/
index.html
File metadata and controls
25 lines (25 loc) · 1.14 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
<!DOCTYPE html>
<html>
<head>
<title>CSS Reference</title>
<script src="javascripts/jquery.min.js" type="text/javascript">
</script>
<script src="javascripts/data.js" type="text/javascript">
</script>
<script src="javascripts/paths.js" type="text/javascript">
</script>
<script src="javascripts/htmlify.js" type="text/javascript">
</script>
<script src="javascripts/app.js" type="text/javascript">
</script>
<link href="stylesheets/screen.css" rel="stylesheet" />
<link href="stylesheets/mozilla.css" rel="stylesheet" />
</head>
<body>
<noscript>Sorry, this service requires JavaScript. Feel free to browse the files directly <a href="http://morrow.github.com/CSS-Reference/html/">here</a>, or visit the origin site for them at <a href="https://developer.mozilla.org/en/CSS">https://developer.mozilla.org/en/CSS </a>or <a href="https://github.com/morrow/CSS-Reference/">Fork this on Github</a></noscript>
<div id="main">
</div>
</body>
<script type="text/javascript">var main = document.getElementById('main');
$(document).ready(function(){ (new App(main)).write(main);});</script>
</html>