forked from IntroHCI/lab1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·32 lines (28 loc) · 1022 Bytes
/
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>HCI Project Portfolio</title>
</head>
<body>
<!-- this is a comment in HTML -->
<h1>Robert Drabik</h1> <!-- h1 through h5 are headers. The higher the number, the smaller the header -->
<h4>Project Portfolio</h4>
<!-- p means paragraph -->
<p>Robert is a a current undergraduate studying Computer Science at the University of California San Diego. He plans on going to industry after graduating and focusing on software engineering.</p>
<h4>Projects</h4>
<ol>
<li>Design Thinking</li>
<li>Needfinding</li>
<li>Prototyping</li>
<li><strong>Working Out, iOS project</strong></li>
<ul>
<li>Tracked and timed exercises users performed using Objective C and iOS SDK</li>
<li>Encapsulated workout data using object oriented design</li>
<li>Implemented a persistent data storage mechanism using archiving</li>
<li>Designed an interactive user interface using iOS View controllers and XIB files</li>
</ul>
<li>...</li>
</ol>
</body>
</html>