forked from IntroHCI/lab1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·68 lines (59 loc) · 1.67 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!doctype html>
<style>
#header {
background-color:black;
color:white;
text-align:center;
padding:5px;
}
#left {
line-height:30px;
background-color:#eeeeee;
height:100%;
width:40%;
float:left;
padding:5px;
}
#right {
width:350px;
float:left;
padding:10px;
}
#footer {
background-color:black;
color:white;
clear:both;
text-align:center;
padding:5px;
}
</style>
<html>
<head>
<meta charset="utf-8">
<title>Jeff's Project Portfolio</title>
</head>
<body>
<!-- this is a comment in HTML -->
<h1>Jeff Lau</h1> <!-- h1 through h5 are headers. The higher the number, the smaller the header -->
<h3>Project Portfolio</h3>
<!-- p means paragraph -->
<p>Jeff is majoring in Interdisciplinary Computing and the Arts with a minor in Computer Science at UC San Diego.</p>
<div id="left">
<h3>Projects</h3>
<h4>Video Storytelling</h4>
<ol>
<li><a href="https://vimeo.com/114299244">Unleashed</a>
<br/><p style="text-indent: 2em;">When artificial intelligence gains self-awareness.</p></li>
<li><a href="https://vimeo.com/110499345">Humanoid</a>
<br/><p style="text-indent: 2em;">Compiled voice recordings from passersby in Las Vegas.</p></li>
<li><a href="https://vimeo.com/122501607">Division</a>
<br/><p style="text-indent: 2em;">Aesthetics of structures found in the atomic level.</p></li>
<li><a href="https://vimeo.com/119926788">Haemoglobin</a>
<br/><p style="text-indent: 2em;">Processing interpretation of the beauty in the crystal structures of hemoglobin as well as the erratic nature of atoms that form it.</p></li>
</ol>
</div>
<div id="right">
<h3></h3>
</div>
</body>
</html>