forked from IntroHCI/lab1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·25 lines (21 loc) · 825 Bytes
/
index.html
File metadata and controls
executable file
·25 lines (21 loc) · 825 Bytes
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>HCI Project Portfolio</title>
</head>
<body>
<!-- this is a comment in HTML -->
<h1>Scott Klemmer</h1> <!-- h1 through h5 are headers. The higher the number, the smaller the header -->
<h4>Project Portfolio</h4>
<!-- p means paragraph -->
<p>Scott is an Associate Professor of Cognitive Science and Computer Science & Engineering at UC San Diego, where he is a co-founder and Associate Director of the Design Lab. He previously served as Associate Professor of Computer Science at Stanford, where he co-directed the HCI Group, held the Bredt Faculty Scholar chair, and was a founding participant in the d.school. </p>
<h4>Projects</h4>
<ol>
<li>Design Thinking</li>
<li>Needfinding</li>
<li>Prototyping</li>
<li>...</li>
</ol>
</body>
</html>