forked from cs4241-21a/a1-gettingstarted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (58 loc) · 1.88 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
<!doctype html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<title>CS4241 Assignment 1</title>
<meta charset="utf-8">
<!-- Fonts -->
<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+Inline&family=Open+Sans&display=swap" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body>
<header>
<h1>Lia's Webware Homepage</h1>
<br>
<a href="classnotes/">Class Notes</a>
</header>
<h2>Information about Lia</h2>
<p>
Hello! My name is Lia Davis. I'm a member of the WPI Class of 2022.
</p>
<p>
I'm currently studying for a BS in Computer Science.
</p>
<p>
I've previously taken the following CS classes:
</p>
<ul>
<li>CS 2022 - Discrete Mathematics</li>
<li>CS 2102 - Object Oriented Design Concepts</li>
<li>CS 2223 - Algorithms</li>
<li>CS 2303 - System Programming Concepts</li>
<li>CS 3043 - Social Implications of Computer Science</li>
<li>CS 3133 - Foundations of Computer Science</li>
<li>CS 3431 - Databases</li>
<li>CS 3516 - Networks</li>
<li>CS 3733 - Software Engineering</li>
<li>CS 4401 - Software Security Engineering</li>
<li>CS 525 - Special Topics: Digital Forensics</li>
</ul>
<h2>Experience</h2>
<h3>Working experience</h3>
<ul>
<li>Solvus Global, LLC. - IT Administrator 2020-present</li>
<li>WPI Academic Technology Center - Student AV Assistant 2018-present</li>
</ul>
<h3>Web Technology Experience</h3>
<ul>
<li>HTML - A lot</li>
<li>CSS - A lot</li>
<li>Java - Some</li>
<li>JavaScript - Some</li>
<li>Ruby - None</li>
<li>Python - Some</li>
<li>Unit Testing - Some</li>
</ul>
</body>
</html>