forked from cs4241-19a/a1-gettingstarted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·45 lines (43 loc) · 1.21 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
<!doctype html>
<html lang="en">
<head>
<title>CS4241 Assignment 1</title>
<meta charset="utf-8">
<meta content="width=device-width, intitial-scale=1">
<style>
body {background-color: rgba(176,196,222, .6);}
body * {opacity: 1;}
h1 {color: blue;}
p {color: black;}
</style>
</head>
<body>
<h1 style="color:blue;">Information about Natalia Carvajal Erker</h1>
<p>
Hello,
</p>
<p>
I am a computer science and psychology major at WPI.
</p>
<p>
I am on the rowing team and from Manhattan, New York! Last year I took: Databases, Algorithms, and Networks.
</p>
<h2 style="color:blue;">Experience</h2>
<p>
I spent all sophomore year working on developing an educational app.
I went to the techtogether hackathon, where I created a webpage to help give information on echo-friendly textbook options.
I have experinace with HTML, Java, C, and Javascript.
</p>
<ul>
<p>Here are some places I've worked with:</p>
<ul>
<li> Girls Who Code</li>
<li> TechTogether</li>
<li> WPI</li>
</ul>
</ul>
<p>
Hope you enjoyed learning about me!
</p>
</body>
</html>