-
Notifications
You must be signed in to change notification settings - Fork 8
/
other.html
62 lines (58 loc) · 1.4 KB
/
other.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>INT222 - Assignment #2 - index.html</title>
<link rel="stylesheet" type="text/css" href="css/reset.css" />
<link rel="stylesheet" type="text/css" href="css/mycss.css" />
</head>
<body>
<nav>
<ul>
<li><a href="../">Zenit Account</a></li>
<li><a href="index.html">Home</a></li>
<li><a href="gallery.html">Photo Gallery</a></li>
<li><a href="video.html">Video</a></li>
<li><a href="audio.html">Audio</a></li>
<li><a href="html5.html">HTML5</a></li>
<li><a href="forms.html">Forms</a></li>
<li><a class="current" href="other.html">Other</a></li>
<li><a href="css">CSS Used</a></li>
</ul>
</nav>
<h1></h1>
<div class="content">
<section>
<h2></h2>
<article>
<p>
</p>
</article>
<hr />
<article>
<p>
</p>
</article>
</section>
<aside>
<h2></h2>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</aside>
</div>
<footer>
<section>
<script type="text/javascript">
//<![CDATA[
var dt=new Date(document.lastModified); // Get document last modified date
document.write('<p>This page was last updated on '+dt.toLocaleString()) + '</p>';
//]]>
</script>
</section>
</footer>
</body>
</html>