-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
213 lines (199 loc) · 7.92 KB
/
index.html
File metadata and controls
213 lines (199 loc) · 7.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Alan's Landing Page</title>
<meta charset="UTF-8">
<meta name="description" content="Alan's Introduction Page in HTML">
</head>
<body>
<header>
<h1>Hi, I'm Alan.</h1>
</header>
<hr>
<section>
<h2>About Me</h2>
<p>Hey, <strong>I'm Alan</strong>, a sophomore studying Computer Science at UCSD. My hobbies include reading and coding, among others.
<b>I’m interested in solving algorithmic problems, applications of algorithms, and artificial intelligence, specifically deep learning.</b>
<br>
Welcome to my page, where you can find links to some of my work and other stuff that's not my work.</p>
<picture>
<source media="(min-width:400px)" srcset="helloworld.jpeg">
<img src="wavehi_small.jpeg" alt="Wave Hi" style="width:auto;">
</picture>
<template>
<picture>
<img src="wavehi_small.jpeg" alt="Wave Hi" style="width:auto;">
</picture>
</template>
<aside>
<p><i>This page is a work in progress.</i></p>
</aside>
<p>Find me at:</p>
<ul>
<li><a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ">Email</a></li>
<li><a href=https://www.linkedin.com/in/alan-li-2001>LinkedIn</a></li>
</ul>
<p>Do you see the <em>canvas</em> below?</p>
<canvas id="canvas" width="200" height="300"></canvas>
<p>What about the black square?</p>
<svg width="200" height="200">
<rect width="200" height="200" />
</svg>
</section>
<hr>
<section>
<h2>Contents</h2>
<nav>
<ol>
<li><a href="#current-projects">Current Projects</a></li>
<li><a href="#past-projects">Past Projects</a></li>
<li><a href="#other-stuff">Other Stuff</a></li>
</ol>
</nav>
<button>This button does...</button>
</section>
<hr>
<section>
<div id="current-projects">
<h2>Current Projects</h2>
<h3>MM2</h3>
<pre>
What DOES this do???
I wonder...
</pre>
<h3>Facial Recognition Web App</h3>
<p>Specific Version of Tensorflow Required:</p>
<code>pip3 install tensorflow==1.15</code>
<p>This app is currently <span style="color:red">not</span> very good.</p>
<figure>
<img src="stateoftheart.png">
<figcaption>Demonstration of Results</figcaption>
</figure>
</div>
</section>
<hr>
<section>
<div id="past-projects">
<h2>Past Projects</h2>
<table style="width:100%">
<caption>Brief Overview</caption>
<colgroup>
<col style="background-color: antiquewhite;">
<col span="2" style="background-color: bisque;">
</colgroup>
<tr>
<th>Project</th>
<th>Link</th>
<th>Description</th>
</tr>
<tr>
<td>Micromanager</td>
<td><a href="https://github.com/cschow-ucsd/micromanager">Link</a></td>
<td>Coroutines and scheduling and stuff</td>
</tr>
<tr>
<td>Nothing yet</td>
<td>Nothing yet</td>
<td>Nothing yet</td>
</tr>
</table>
</div>
</section>
<hr>
<section>
<div id="other-stuff">
<h2>Other Stuff</h2>
<details>
<summary>Disclaimer</summary>
<p>This may or may not be a bit of a mess</p>
</details>
<iframe src="https://yuyeon.github.io/" title="Original Github Page"></iframe>
<br>
<p>Oh hi!</p>
<audio controls>
<source src="OH_HI_MARK.mp3" type="audio/mp3">
</audio>
<h3>Video below (Note: serious volume warning)</h3>
<video width="320" controls>
<source src="bananas.mp4" type="video/mp4">
</video>
</div>
</section>
<hr>
<section>
<h2>Even More Stuff</h2>
<form>
<label for="email">What is my email? Hint: click on the email in the "About Me" section.</label>
<br>
<input type="email" id="email" name="email">
<br>
<label for="name">What's my name? </label>
<br>
<input type="text" id="name" name="name" list="names">
<datalist id="names">
<option>I don't know</option>
<option>I wasn't paying attention</option>
<option>Willy Wonka</option>
</datalist>
<br>
<fieldset>
<legend>Related to the continuum of time</legend>
<label for="local_time">What's your local time?</label>
<br>
<input type="datetime-local" id="local_time" name="local_time">
<br>
<label for="month">What month is it?</label>
<br>
<input type="month" id="month" name="month">
<br>
<label for="date">What is the date?</label>
<br>
<input type="date" id="date" name="date">
<br>
<label for="time">What time is it?</label>
<br>
<input type="time" id="time" name="time">
</fieldset>
<br>
<label for="password">Feel free to type a password in :)</label>
<br>
<input type="password" id="password" name="password">
<br>
<label for="search">Try out this nonexistent search function.</label>
<br>
<input type="search" id="search" name="search">
<br>
<label for="number">What is the golden ratio?</label>
<br>
<input type="number" id="number" name="number">
<br>
<label for="languages">Choose your favorite language:</label>
<br>
<select name="languages" id="languages">
<optgroup label="The Right Answer">
<option value="kotlin">Kotlin</option>
</optgroup>
<optgroup label="Other Answers">
<option value="python">Python</option>
<option value="c++">C++</option>
<option value="c">C</option>
<option value="java">Java</option>
<option value="english">English</option>
</optgroup>
</select>
<br>
<label for="thoughts">Any things you want to share (about anything, feel free to write an essay)?</label>
<br>
<textarea id="thoughts" name="thoughts">Type here</textarea>
<br>
<label for="submit">An extra submit button that doesn't work.</label>
<br>
<input type="submit" id="submit" name="submit">
<br>
</form>
</section>
<footer>
<p>Writen by Alan Li</p>
</footer>
</body>
</html>