-
Notifications
You must be signed in to change notification settings - Fork 0
/
cnit133_hw6.html
49 lines (48 loc) · 1.71 KB
/
cnit133_hw6.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>CNIT 133 - Homework 6 - Objects</title>
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body id="homework-6">
<div class="container">
<header>
<h1>CNIT 133 Homework Page</h1>
<nav id="main-nav">
<ul>
<li><a href="cnit133_hw1.html">HW1</a></li>
<li><a href="cnit133_hw2.html">HW2</a></li>
<li><a href="cnit133_hw3.html">HW3</a></li>
<li><a href="cnit133_hw4.html">HW4</a></li>
<li><a href="cnit133_hw5.html">HW5</a></li>
<li class="active"><a href="cnit133_hw6.html">HW6</a></li>
<li><a href="cnit133_hw7.html">HW7</a></li>
<li><a href="cnit133_hw8.html">HW8</a></li>
</ul>
</nav>
</header>
<main>
<h1>Homework 6 - Objects</h1>
<p>Under construction</p>
</main>
<footer>
<p id="last-modified">
<script type="text/javascript">
// I've just used the script from the teacher sample as it's pretty straight forward.
// Save the document property lastModified in a variable
var dateModified = document.lastModified;
// Removing second from String dateModified ( :ss )
mydate = dateModified.slice(0,16);
// Printing last updated date to document
document.write("Last updated: " + mydate);
</script>
</p>
<div id="validations">
<a target="_blank" href="https://validator.w3.org/check?uri=referer"><img src="./assets/html5a.jpg" alt="HTML5"></a>
<a target="_blank" href="https://jigsaw.w3.org/css-validator/check/referer"><img src="./assets/vcss-blue.gif" alt="Valid CSS!"></a>
</div>
</footer>
</div>
</body>
</html>