-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhw7part2.html
More file actions
97 lines (97 loc) · 4.86 KB
/
hw7part2.html
File metadata and controls
97 lines (97 loc) · 4.86 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
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<!--Kristian Reyes 11/22/2020 -->
<title>CNIT 133 Homework 7</title>
<meta charset="utf-8">
<meta name="description" content="homework 7 for CCSF CNIT 133">
<meta name="keywords" content="HTML, CSS, Javascript, CCSF, Student">
<meta name="author" content="Kristian Reyes">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
<!--bootstrap -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(document).ready(function(){
$('nav li ul').hide().removeClass('obscure');
$('nav li').hover(
function () {
$('ul', this).stop().slideDown(200);
},
function () {
$('ul', this).stop().slideUp(200);
}
);
});
</script>
</head>
<body>
<main class="grid">
<header class="grid-area grid-area-1">
<h2> Homework 7 - Part 2 </h2>
</header>
<nav class="grid-area grid-area-2">
<ul>
<li>
<a href="homework7.html" title="CNIT 133 - HW 7 ">
Return to CNIT 133 Homework 7 - Object Model and Misc jQuery
</a>
</li>
</ul>
</nav>
<section class="grid-area grid-area-3">
<h2> Part 2</h2>
<nav>
<ul>
<li><a href="https://marbleindex.github.io/JavaScript/homework1.html">Homework 1</a></li>
<li>
<a href="https://marbleindex.github.io/JavaScript/homework2.html">Homework 2</a>
<ul class="obscure">
<li><a href="https://marbleindex.github.io/JavaScript/part1.html">Part 1</a></li>
<li><a href="https://marbleindex.github.io/JavaScript/part2.html">Part 2</a></li>
<li><a href="https://marbleindex.github.io/JavaScript/part3.html">Part 3</a></li>
</ul>
</li>
<li>
<a href="https://marbleindex.github.io/JavaScript/homework3.html">Homework 3</a>
<ul class="obscure">
<li><a href="https://marbleindex.github.io/JavaScript/hw3part1.html">Part 1</a></li>
<li><a href="https://marbleindex.github.io/JavaScript/hw3part2.html">Part 2</a></li>
<li><a href="https://marbleindex.github.io/JavaScript/hw3part3.html">Part 3</a></li>
<li><a href="https://marbleindex.github.io/JavaScript/hw3part4.html">Part 4</a></li>
</ul>
<li>
<a href="https://marbleindex.github.io/JavaScript/homework4.html">Homework 4</a>
<ul class="obscure">
<li><a href="https://marbleindex.github.io/JavaScript/hw4part1.html">Part 1</a></li>
<li><a href="https://marbleindex.github.io/JavaScript/hw4part2.html">Part 2</a></li>
</ul>
<li>
<a href="https://marbleindex.github.io/JavaScript/homework5.html">Homework 5</a>
<ul class="obscure">
<li><a href="https://marbleindex.github.io/JavaScript/hw5part1.html">Part 1</a></li>
<li><a href="https://marbleindex.github.io/JavaScript/hw5part2.html">Part 2</a></li>
<li><a href="https://marbleindex.github.io/JavaScript/hw5part3.html">Part 3</a></li>
</ul>
<li>
<a href="https://marbleindex.github.io/JavaScript/homework6.html">Homework 6</a>
<ul class="obscure">
<li><a href="https://marbleindex.github.io/JavaScript/hw6part1.html">Part 1</a></li>
<li><a href="https://marbleindex.github.io/JavaScript/hw6part2.html">Part 2</a></li>
<li><a href="https://marbleindex.github.io/JavaScript/hw6part3.html">Part 3</a></li>
</ul>
</ul>
</nav>
</section>
<footer class="grid-area grid-area-4">
<p>
© 2020 Kristian Reyes
</p>
</footer>
</main>
</body>
</html>