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
163 lines (141 loc) · 4.1 KB
/
index.html
File metadata and controls
163 lines (141 loc) · 4.1 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html lang="en">
<head>
<title>CS4241 Assignment 1</title>
<meta charset="utf-8" />
<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=Kaisei+HarunoUmi&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Kaisei HarunoUmi', serif;
background-color: #E65A78;
}
h1 {
color: #7CE68D;
text-shadow: 3px 3px #CC65E6;
}
h2 {
color: #EBD42F;
text-shadow: 3px 3px #8570E6;
}
dl, ul {
font-family: 'Montserrat', sans-serif;
}
.intro {
background-color: #CC65E6;
}
.experience {
background-color: #8570E6
}
img {
max-width: 100%;
height: auto;
}
.column {
float: left;
width: 45%;
padding: 5px;
}
/* Clear floats after image containers */
.row::after {
content: "";
clear: both;
display: table;
}
table, th, td {
border: 1px solid black;
}
</style>
<script type="text/javascript">
function changeBackground() {
document.getElementById("showtable").innerHTML = "I am looking forward to those classes!";
}
</script>
</head>
<body>
<h1>Information about Victoria Grasso</h1>
<div class="intro">
<p>
Hi everyone! My name is Victoria and I am a senior at WPI (class of 2022)!
</p>
<p>
I am majoring is computer science and looking forward to taking this Webware class.
</p>
<p>
I love to play basketball, read, and travel!
I went to Arizona this summer so here are some images of the amazing sights!
</p>
</div>
<div class="row">
<div class="column">
<img src="https://cdn.glitch.com/c2f829ad-b395-464d-95c0-79ecd717cdaa%2FArizona.jpg?v=1630253936002" alt="Arizona">
</div>
<div class="column">
<img src="https://cdn.glitch.com/c2f829ad-b395-464d-95c0-79ecd717cdaa%2FArizonaSedona3.jpg?v=1630253926474" alt="Sedona">
</div>
</div>
<h2>Experience</h2>
<div class="experience">
<p>
Previous computer science classes taken at WPI:
</p>
<dl>
<dt>Freshman Year</dt>
<dd>Introduction to Program Design</dd>
<dd>Object-Oriented Design Concepts</dd>
<dd>Systems Programming Concepts</dd>
<dd>Introduction to Machine Organization and Assembly</dd>
<dt>Sophmore Year</dt>
<dd>Discrete Mathematics</dd>
<dd>Database Systems I</dd>
<dd>Algorithms</dd>
<dd>Operating Systems</dd>
<dd>Software Engineering</dd>
<dt>Junior Year</dt>
<dd>Foundations of Computer Science</dd>
<dd>Social Implications of Computer Processing</dd>
<dd>Data Visualization</dd>
<dd>Machine Learning</dd>
</dl>
</div>
<button type="button" onclick="changeBackground()">
Surprise!
</button>
<div id="showtable" class="experience">
<table>
<tr>
<th>Current and Future CS classes</th>
<th>Term</th>
</tr>
<tr>
<td>Webware</td>
<td>A 21</td>
</tr>
<tr>
<td>Mobile and Ubiquitous Computing</td>
<td>A 21</td>
</tr>
<tr>
<td>Introduction to Artificial Intelligence</td>
<td>C 22</td>
</tr>
</table>
</div>
<div class="experience">
<p>
Experience with the following technologies and methods:
</p>
<ul>
<li>HTML: some</li>
<li>CSS: some</li>
<li>Java: some</li>
<li>JavaScript: some</li>
<li>Ruby: none</li>
<li>Python: some</li>
<li>Unit Testing: some</li>
</ul>
</div>
</body>
</html>