forked from cs4241-21a/a1-gettingstarted
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
142 lines (126 loc) · 3.21 KB
/
index.html
File metadata and controls
142 lines (126 loc) · 3.21 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!doctype html>
<html lang="en">
<head>
<title>CS4241 Assignment 1</title>
<link href="https://fonts.googleapis.com/css2?family=Merriweather:wght@300&family=Montserrat:wght@100&family=Sacramento&display=swap">
<meta charset="utf-8">
</head>
<script>
let currentColor = '#2C2F33';
window.onload = function() {
document.body.style.backgroundColor = currentColor;
setInterval( function() {
if (currentColor === '#2C2F33') {
currentColor = 'black';
} else {
currentColor = '#2C2F33';
}
document.body.style.backgroundColor = currentColor;
}, 800)
}
</script>
<style>
body {
text-align: center;
//background-color: #2C2F33;
font-family: 'Merriweather', serif;
}
img {
width: 150px;
}
p {
color: #F5F5F5;
margin-bottom: 20px;
}
li {
color: #F5F5F5;
margin-bottom: 20px;
font-family: 'Merriweather', serif;
}
table {
margin: auto;
font-family: 'Merriweather', serif;
}
h1 {
color: #D4C8DE;
font-family: 'Sacramento', cursive;
}
h2 {
color: #DED3C8;
margin-top: 50px;
font-family: 'Montserrat', sans-serif;
}
.experience {
font-weight: bold;
color: #FAF8E1;
font-family: 'Montserrat', sans-serif;
}
.none {
text-decoration: line-through;
}
.myname {
text-decoration: underline;
}
</style>
<body>
<h1>Information about Steven Tran</h1>
<img src="https://lh3.googleusercontent.com/BRsTmavwjp8rFoV2F169Jd4qRfZcuvush8ob1Z49lfYG2AVkxKmNi14He3nJfCdC8lG9CJYLEg5g6-YwQw=s608-rw-no" alt="Steven-img">
<p>
Hello! I am <span class="myname">Steven</span>. I am a Junior (Class of 2023)
</p>
<p>
I am a <a href="https://www.wpi.edu/academics/departments/computer-science">Computer Science</a> and <a href="https://www.wpi.edu/academics/departments/data-science">Data Science</a> double major.
</p>
<p>
I love building keyboards!
</p>
<h2>Experience</h2>
<p class="experience">
Computer science courses taken at WPI
</p>
<table>
<tbody>
<tr>
<td><table cellspacing="10">
<tr>
<td>
<ul>
<li>CS1101</li>
<li>CS2102</li>
<li>CS2303</li>
<li>CS2011</li>
</ul>
</td>
<td>
<ul>
<li>CS2223</li>
<li>CS2022</li>
<li>CS3431</li>
<li>CS3013</li>
</ul>
</td>
</tr>
</table></td>
</tr>
</tbody>
</table>
<p class="experience">
Experience with technologies
</p>
<table cellspacing="10">
<tr>
<td>
<ul>
<li>HTML - some</li>
<li>CSS - some</li>
<li>Java - some</li>
<li>Javascript - some</li>
<li class="none">Ruby - none</li>
<li>Python - a lot</li>
<li class="none">unit testing - none</li>
</ul>
</td>
</tr>
</table>
</body>
</html>