-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlesson.html
More file actions
89 lines (88 loc) · 2.85 KB
/
lesson.html
File metadata and controls
89 lines (88 loc) · 2.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="css/lessonStyles.css">
<script>
function playScroll(){
var audio = document.getElementById("scrollSound");
audio.play();
}
function playSelect(){
var audio = document.getElementById("selectSound");
audio.play();
}
</script>
<script>
$(document).ready(function(){
$("a li").mouseover(function() {
playScroll();
});
$("a li").mousedown(function(){
playSelect();
});
});
</script>
<title>ACM-SEMO | Lesson</title>
</head>
<body>
<div id="mainDiv" class="container">
<div>
<a href="resources.html"><img src="images/acm_logo_semo_transparent.png" height="160" width="160"/></a>
<h1>Megaminer AI Packet</h1>
<hr />
</div>
<div>
<a href="#ulOne" data-toggle="collapse"><h2>1. Managing Your Code in a Team</h2></a>
<ul id="ulOne" class="collapse">
<a href="#"><li class="liTop">Git</li></a>
<a href="#"><li>Github</li></a>
<a href="quizGit.html" target="_blank"><li class="liBottom">Git Quiz</li></a>
</ul>
</div>
<div>
<a href="#ulTwo" data-toggle="collapse"><h2>2. Using the Linux Environment</h2></a>
<ul id="ulTwo" class="collapse">
<a href="#"><li class="liTop">Installing Ubuntu</li></a>
<a href="#"><li>Navigating the Linux Command Line</li></a>
<a href="#"><li class="liBottom">Using the Atom Editor</li></a>
</ul>
</div>
<div>
<a href="#ulThree" data-toggle="collapse"><h2>3. Basic AI Programming Concepts</h2></a>
<ul id="ulThree" class="collapse">
<a href="#"><li class="liTop">Finite State Machines</li></a>
<a href="#"><li>Fuzzy Logic</li></a>
<a href="#"><li class="liBottom">Path Finding</li></a>
</ul>
</div>
<br/><br/>
<div>
<h1>Web Development</h1>
<hr/>
</div>
<div>
<a href="#ulFour" data-toggle="collapse"><h2>1. Front End Development</h2></a>
<ul id="ulFour" class="collapse">
<a href="#"><li class="liTop">HTML</li></a>
<a href="#"><li>CSS</li></a>
<a href="#" target="_blank"><li class="liBottom">HTML/CSS Quiz</li></a>
</ul>
</div>
<div>
<a href="#ulFive" data-toggle="collapse"><h2>2. Back End Development</h2></a>
<ul id="ulFive" class="collapse">
<a href="#"><li class="liTop">Javascript</li></a>
<a href="#"><li>Jquery</li></a>
<a href="#" target="_blank"><li class="liBottom">Javascript Quiz</li></a>
</ul>
</div>
<audio id="scrollSound" src="sounds/scroll.mp3"></audio>
<audio id="selectSound" src="sounds/select.mp3"></audio>
</div>
</body>
</html>