-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
263 lines (228 loc) · 6.78 KB
/
index.html
File metadata and controls
263 lines (228 loc) · 6.78 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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
<!DOCTYPE html>
<html lang="en">
<head>
<title>Profile</title>
<meta charset="utf-8">
<link href="/styles/main.css" rel="external">
</head>
<body>
<header>
<h1>
Welcome to Steven's Page!
</h1>
</header>
<main>
<figure>
<img
src="https://harrissteven.github.io/HTMLProfile/images/profile_pic.jpg"
alt="Profile Picture"
width="600">
<figcaption>Steven Harris</figcaption>
</figure>
<p>
I am studying computer science at <em>UC San Diego</em>
</p>
<p>
I am interested in
</p>
<ol>
<li>
<b>Software Engineering</b>
<ul>
<li><strong>Web Development</strong></li>
<li><strong>Mobile Development</strong></li>
</ul>
</li>
<li><b>Computer Vision</b> Research</li>
</ol>
<aside>
<p>Low-level programming is good for the programmer's soul <i>— John Carmack</i>
</aside>
<h2>
Projects
</h2>
<section>
<h3>Stack Visualizer</h3>
<p>
Visualize the dynamic memory allocation in 32-bit ARM with the
<a href="https://harrissteven.github.io/stack-visualizer/">Stack Visualizer</a>
which supports basic instructions like <code>ADD</code>, <code>MOV</code>, and <code>LDR</code>
</p>
<iframe
src="https://harrissteven.github.io/stack-visualizer/">
</iframe>
</section>
<h2>Research</h2>
<section>
<h3>FPGA Multitenant Security</h3>
<p>
I am interested in computer vision research and am currently part of a group at UCSD working at the intersection of hardware security and vision.
</p>
</section>
<h2>Interests</h2>
<section>
<ul>
<li>I enjoy playing the guitar in my free time</li>
<li>I like to run on the beach</li>
</ul>
</section>
<p>A short video of the beach</p>
<video controls width="1000">
<source src="https://harrissteven.github.io/HTMLProfile/video/Geisel_Short.mp4"
type="video/mp4">
Sorry, your browser doesn't support embedded videos.
</video>
<hr>
<h2><span>More Information</span></h2>
<nav>
<ol>
<li><a href="#">Profile</a></li>
<li><a href="#">Projects</a></li>
<li><a href="#">Research</a></li>
</ol>
</nav>
<pre>Student ID Picture <br> </pre>
<picture>
<source srcset="https://harrissteven.github.io/HTMLProfile/images/studentid2.jpg"
media="(min-width: 600px)">
<img src="https://harrissteven.github.io/HTMLProfile/images/studentid2.jpg" alt="" width="600"/>
</picture>
<p>Here is some audio from music class</p>
<audio
controls
src="https://harrissteven.github.io/HTMLProfile/audio/Performance_Lesson_1.m4a">
Your browser does not support the
<code>audio</code> element.
</audio>
<p>I'm a fan of cubism</p>
<canvas>
Green Square
</canvas>
<script>
const canvas = document.querySelector('canvas');
const ctx = canvas.getContext('2d');
ctx.fillStyle = 'green';
ctx.fillRect(10, 10, 100, 100);
</script>
<p>My favorite shape is a circle</p>
<svg xmlns="http://www.w3.org/2000/svg" stroke="red" fill="grey">
<circle cx="50" cy="50" r="50" />
</svg>
<h2>Contact Me</h2>
<form>
<div>
<label for="name">Enter your name: </label>
<input type="text" name="name" id="name" required>
</div>
<div>
<label for="email">Enter your email: </label>
<input type="email" name="email" id="email" required>
</div>
<div>
<label for="checkbox">Attends UCSD?: </label>
<input type="checkbox" name="checkbox" id="checkbox" required>
</div>
<div>
<label for="radio">Unemployed: </label>
<input type="radio" name="radio" id="radio" required>
</div>
<div>
<label for="tel">Phone Number: </label>
<input type="tel" name="tel" id="tel" required>
</div>
<div>
<label for="number">Number of Years of SE Experience: </label>
<input type="number" name="number" id="number" required>
</div>
<div>
<label for="url">Personal Website: </label>
<input type="url" name="url" id="url" required>
</div>
<div>
<label for="password">Discount Code: </label>
<input type="password" name="password" id="password" required>
</div>
<div>
<label for="date">Today's Date: </label>
<input type="date" name="date" id="date" required>
</div>
<div>
<p>What's on your mind?</p>
<textarea></textarea>
</div>
<div>
<input type="submit" value="Send">
</div>
</form>
<h2>About You</h2>
<p>What is your major?</p>
<fieldset>
<legend>Choose your major</legend>
<select>
<optgroup label="CSE">
<option>Computer Science</option>
<option>Computer Engineering</option>
</optgroup>
<optgroup label="MATH">
<option>Math-CS</option>
<option>Math</option>
</optgroup>
</select>
</fieldset>
<p>What Operating System do you use?</p>
<label for="os-choice">Choose Your Operating System:</label>
<input list="os-types" id="os-choice" name="os-choice" />
<datalist id="os-types">
<option value="Windows">
<option value="Mac">
<option value="Linux">
</datalist>
<p>Contact me inside my available times</p>
<table>
<caption>Availability</caption>
<colgroup>
<col span="1" class="Week Days">
<col span="1" class="Monday">
<col span="1" class="Tuesday">
<col span="1" class="Wednesday">
<col span="1" class="Thursday">
<col span="1" class="Friday">
</colgroup>
<tr>
<th scope="col">Week Days</th>
<th scope="col">Monday</th>
<th scope="col">Tuesday</th>
<th scope="col">Wednesday</th>
<th scope="col">Thursday</th>
<th scope="col">Friday</th>
</tr>
<tr>
<th scope="row">Hours Free</th>
<td>8am-9am</td>
<td>10am-11:30am</td>
<td>5pm-7pm</td>
<td>2pm-4pm</td>
<td>8am-9am</td>
</tr>
</table>
<details>
<summary>Contact Info</summary>
<p>s5harris@ucsd.edu</p>
</details>
<button onclick="showContent()">Contact</button>
<template>
<h2>Thank You!</h2>
</template>
<script>
function showContent() {
var temp = document.getElementsByTagName("template")[0];
var clone = temp.content.cloneNode(true);
document.body.appendChild(clone);
}
</script>
</main>
<footer>
<p>Hosted by Github Pages</p>
</footer>
</body>
</html>