forked from cs4241-20a/a1-gettingstarted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·70 lines (67 loc) · 1.95 KB
/
index.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!doctype html>
<html lang="en">
<head>
<title>CS4241 Assignment 1</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Kite+One&family=Kufam&family=Yanone+Kaffeesatz&display=swap" rel="stylesheet">
<script type="text/javascript">
function flipColor(){
var t = document.getElementById("Top");
if(t.style.color=="white"){
t.style.color="blue";
}
else{
t.style.color="white";
}
}
</script>
</head>
<body onload="setInterval(flipColor,1000)">
<div id="Top">
<h1>Information about Lindberg Simpson <br> WPI Class of 2022</h1>
</div>
<p>
Hi everyone! My name is Lindberg Simpson and I'm a Computer Science Major also pursuing a minor in ECE. <br>
I hope to learn a lot from this class about developing attractive web sites.
</p>
<p>
Computer Science Major <br> Electrical and Computer Engineering Minor
</p>
<div id="Experience">
<p>
I've taken classes like Software Engineering, Operating Systems, Machine Organization, <br>
Systems, Foundations, and Social Implications of Computer Science
</p>
</div>
<h2>Experience</h2>
<h3>
Programming language experience
</h3>
<ul>
<li>HTML - Some</li>
<li>CSS - Some</li>
<li>Java - A lot</li>
<li>JavaScript - Some</li>
<li>Ruby - None</li>
<li>Python - Some</li>
<li>Unit Testing - Some</li>
</ul>
<h3>
Working experience
</h3>
<ul>
<li>IBM/Rational</li>
<li>WPI</li>
<li>International House</li>
</ul>
<a href="https://www.wpi.edu">This is my school's home page!</a>
<br> <q>Lehr und Kunst</q> <br>
<img alt="" src="gompei.jpeg" width="400" height="300">
<br>
<input type="text" placeholder="this doesnt do anything">
<button>Button</button>
<table>
</table>
</body>
</html>