-
Notifications
You must be signed in to change notification settings - Fork 0
/
prototype.htm
102 lines (76 loc) · 2.8 KB
/
prototype.htm
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
94
95
96
97
98
99
100
101
102
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" id="example-com">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Page Title: Site Name</title>
<link rel="stylesheet" type="text/css" media="screen, print" href="css/reset.css" />
<link rel="stylesheet" type="text/css" media="screen" href="css/screen.css" />
<!--[if lte IE 7>
<link rel="stylesheet" type="text/css" media="screen" href="css/screen-ie.css" />
<![endif]-->
<link rel="stylesheet" type="text/css" media="print" href="css/print.css" />
<!--REMOVE COMMENT TAGS TO USE FACEBOOK SHARE METADATA:-->
<!--
<meta name="title" content="Match this with the content of the title tag above." />
<meta name="description" content="A short description of this page." />
<link rel="image_src" href="http://example.com/media/img/thumbnail.jpg" />
-->
<!--REMOVE COMMENT TAGS TO USE FAVICON LINKS:-->
<!--For most browsers:-->
<!--
<link rel="icon" href="http://example.com/favicon.png" type="image/png" />
-->
<!--For Internet Explorer:-->
<!--
<link rel="shortcut icon" href="http://example.com/favicon.ico" />
-->
<!--Load the jQuery library-->
<script type="text/javascript" src="/js/jquery/jquery.js"></script>
<!--Load site-wide JavaScript-->
<script type="text/javascript" src="/js/site.js"></script>
<!--Load SWFObject for working with Flash media; uncomment to load.-->
<!--
<script type="text/javascript" src="/js/swfobject/swfobject.js"></script>
-->
<!--Page-specific JavaScript, e.g., for use with SWFObject-->
<script type="text/javascript">
/*Page-specific JavaScript*/
</script>
</head>
<body>
<div id="page">
<div id="header">
<h1><a href="http://example.com/" rel="home">Site Name</a></h1>
<p class="tagline">
Site Tagline
</p>
<ul class="accessibility">
<li><a href="#navigation">Jump to Navigation</a></li>
<li><a href="#content">Jump to Content</a></li>
</ul>
</div>
<div id="content">
<div id="main">
<h2>Page Title</h2>
</div>
<div id="supporting">
</div>
</div>
<ul id="navigation">
<li><a href="">Home</a></li>
<li><a href="about.html">About</a></li>
</ul>
<div id="footer">
<p class="credits">
Site information, credits, license.
</p>
<ul class="validators">
<li><a href="http://validator.w3.org/check?uri=referer"
title="Validate this page's XHTML">XHTML</a></li>
<li><a href="http://jigsaw.w3.org/css-validator/check/referer"
title="Validate this page's CSS">CSS</a></li>
</ul>
</div>
</div>
</body>
</html>