-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (49 loc) · 1.64 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
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<title>Project 0</title>
<link href="style.css" rel="stylesheet" >
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700" rel="stylesheet">
</head>
<body>
<h1>Project 0</h1>
<h3>291A: Scalable Internet Services</h3>
<p>Matthew Li</p>
<a href="https://github.com/tigermli/291A_Proj0">Github Repository</a>
<h3>UCSB Facts</h3>
<ul>
<li>UCSB marine scientists played a key role in developing Ocean in Google Earth.</li>
<li>The seven miles of bikeways on or adjacent to the UCSB campus are used by an estimated 14,000 cyclists daily.</li>
<li>Each year, the UCSB dining commons serves 1,092,840 glasses of milk and 40,000 chocolate chip cookies.</li>
</ul>
<h3>Where Gauchos Live</h3>
<table>
<tr>
<th>Location</th>
<th>Percent</th>
</tr>
<tr>
<td>Uni Housing</td>
<td>39%</td>
</tr>
<tr>
<td>Isla Vista</td>
<td>36%</td>
</tr>
<tr>
<td>Santa Barbara</td>
<td>9%</td>
</tr>
<tr>
<td>Goleta</td>
<td>7%</td>
</tr>
<tr>
<td>Other</td>
<td>6%</td>
</tr>
</table>
<h3>"This Is Fine"</h3>
<img class="meme" alt="2020 in a nutshell" src="meme.png">
</body>
</html>