forked from cs-4241-2024/a1-gettingstarted
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (51 loc) · 1.91 KB
/
index.html
File metadata and controls
56 lines (51 loc) · 1.91 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
<!doctype html>
<html lang="en">
<head>
<title>CS4241 Assignment 1</title>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bungee+Tint&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bungee+Tint&family=Handjet:wght@100..900&display=swap" rel="stylesheet">
<script>
window.onload = function(){
let blue = 0
const fnc = function() {
blue = (blue + 20) % 255
console.log('test', blue)
document.body.style="background-color:rgb(160, 255, "+ blue +")"
setTimeout(fnc, 900);
}
setTimeout(fnc, 10)
}
</script>
</head>
<body>
<h1>Information about Brendan Byrne class of 2024</h1>
<p>
I aim to graduate this coming December with two bachelor degrees and a better understanding of different areas to dive into for coding
</p>
<p>
I am a Robotics Engineering and Computer Science double major
</p>
<p>
I have taken CS 2102, 2303, 2011, 2223, 3013 OS, 2022, 3043, 3733, 4341, and 3431. I have also finished all undergrad RBE courses necessary for RBE degree
</p>
<h2>Experience</h2>
<ul>
<li>HTML - None</li>
<li>CSS - Some</li>
<li>Java - A lot</li>
<li>JavaScript - Some</li>
<li>Ruby - None</li>
<li>Python - A lot</li>
<li>unit testing - A lot</li>
</ul>
</body>
<footer>
<img style="width: 100%;" src="https://cdn.glitch.global/e332abc6-4d68-4d7a-9ac0-a505f446b27a/bear_sunset_lockscreen.png?v=1724891346909">
</footer>
</html>