forked from cs4241-21a/a1-gettingstarted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (52 loc) · 1.68 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
<!doctype html>
<html lang="en">
<head>
<script src="script.js"></script>
<link rel="stylesheet" href="style.css"/>
<!--Montserrat google font-->
<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=Montserrat:wght@300&display=swap" rel="stylesheet">
<title>CS4241 Assignment 1</title>
<meta charset="utf-8">
</head>
<body id="bodyBack">
<h1>Information about Nicholas Markou</h1>
<h4>Introduction</h4>
<p>
I'm Nick and I'm from Westborough, MA. I'm part of the class of 2024 and gained an interest in web development ever since I recreated the old <a href="https://users.wpi.edu/~nmmarkou">WPI Planner</a> last May.
</p>
<img src="mypic.jpg" width="8%"/>
<h4>Major</h4>
<p>
BS in Computer Science
</p>
<h4>Courses I've taken:</h4>
<ul>
<li>CS1101</li>
<li>CS2102</li>
<li>CS2303</li>
<li>CS2223</li>
<li>Currently taking CS2022 and CS4241</li>
</ul>
<h4>Experience</h4>
<p>
Experience with the following technologies and methods:
</p>
<ul>
<li>HTML - A lot</li>
<li>CSS - Some</li>
<li>Java - A lot</li>
<li>Javascript - None</li>
<li>Ruby - None</li>
<li>Python - A lot</li>
<li>Unit Testing - A lot</li>
</ul>
<h4>Work Experience</h4>
<p>Summer Tech Assistant at Westborough Public Schools (2019-2021)</p>
<footer style="bottom: 15px;">
<input type="checkbox" onclick="darkmode(this.checked)">
<label for="colormode">Dark Mode</label>
</footer>
</body>
</html>