forked from cs-4241-2023/a1-gettingstarted
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (79 loc) · 2.07 KB
/
index.html
File metadata and controls
80 lines (79 loc) · 2.07 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
<!doctype html>
<html lang="en">
<head>
<title>CS4241 Assignment 1</title>
<meta charset="utf-8">
<link rel="stylesheet" href="fonts.googleapis.com/css?family=Roboto">
<link rel="stylesheet" href="/style.css"/>
</head>
<body>
<h1 style="font-family: Roboto;">Information about Matthew McAlarney</h1>
<p>
Class of 2020
</p>
<p>
Computer Science Major
</p>
<p>
CS courses I have taken:
</p>
<ul>
<li>Intro to Program Design</li>
<li>Object-Oriented Design Concepts</li>
<li>Introduction to Systems Programming</li>
<li>Machine Organization and Assembly Language</li>
<li>Social Implications of Information Processing</li>
<li>Discrete Mathematics</li>
<li>Algorithms</li>
<li>Operating Systems</li>
<li>Software Engineering</li>
<li>Foundations of Computer Science</li>
<li>Databases 1</li>
<li>Theory of Computation</li>
</ul>
<h2>Experience</h2>
<p>
Experience with the following technologies and methods:
</p>
<ul>
<li>HTML - Some</li>
<li>CSS - Some</li>
<li>Java - Some</li>
<li>JavaScript - Some</li>
<li>Ruby - None</li>
<li>Python - Some</li>
<li>Unit Testing - Some</li>
</ul>
<p>
Working experience:
</p>
<ul>
<li>Two software development internships using Java and Spring Boot</li>
</ul>
<h2>
Extra animation
</h2>
<div id = "container">
<div id = "animateDot"></div>
</div>
<button onclick = "moveDotDown()">Move Dot Down</button>
</body>
<script>
function moveDotDown() {
let intervalId = null;
const dotElement = document.getElementById("animateDot");
let position = 0;
clearInterval(intervalId);
intervalId = setInterval(frameMove, 10);
function frameMove() {
if(position == 150) {
clearInterval(intervalId);
}
else {
position = position + 5;
dotElement.style.top = position + 'px';
}
}
}
</script>
</html>