-
Notifications
You must be signed in to change notification settings - Fork 85
/
index.html
84 lines (78 loc) · 2.81 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!doctype html>
<html>
<head>
<title>HCI Project Portfolio</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-theme.min.css" rel="stylesheet">
<link href="css/introHCI.css" rel="stylesheet">
<!-- this is a comment in HTML -->
</head>
<body>
<div class="container">
<!-- h1 through h6 are headers. The higher the number, the smaller the header -->
<!-- p means paragraph -->
<div class="jumbotron">
<h1>Michael Bernstein</h1>
<p>human-computer interaction · social computing · crowdsourcing</p>
<button id="testjs" class="btn btn-primary btn-lg">Test Javascript</button>
</div>
<h4>Projects</h4>
<!-- divs are invisible structuring elements that stack vertically by default. Use them to organize your code -->
<!-- img tags are images. Lorem Pixel will deliver random images; handy! -->
<!-- a are anchors, also known as hyperlinks. Use the href attribute to tell the browser where to go when the user clicks -->
<div class="project" id="project1">
<a href="" class="thumbnail">
<img src="images/lorempixel.people.1.jpeg" alt="Lorem Pixel image" class="img">
<p>Waiting in Line</p>
</a>
</div>
<div class="project" id="project2">
<a href="#" class="thumbnail">
<img src="images/lorempixel.city.1.jpeg" alt="Lorem Pixel image" class="img">
<p>Needfinding</p>
</a>
</div>
<div class="project" id="project3">
<a href="#" class="thumbnail">
<img src="images/lorempixel.technics.1.jpeg" alt="Lorem Pixel image" class="img">
<p>Prototyping</p>
</a>
</div>
<div class="project" id="project4">
<a href="#" class="thumbnail">
<img src="images/lorempixel.abstract.1.jpeg" alt="Lorem Pixel image" class="img">
<p>Heuristic Evaluation</p>
</a>
</div>
<div class="project" id="project5">
<a href="#" class="thumbnail">
<img src="images/lorempixel.abstract.8.jpeg" alt="Lorem Pixel image" class="img">
<p>Visualization</p>
</a>
</div>
<div class="project" id="project6">
<a href="#" class="thumbnail">
<img src="images/lorempixel.people.2.jpeg" alt="Lorem Pixel image" class="img">
<p>Social design</p>
</a>
</div>
<div class="project" id="project7">
<a href="#" class="thumbnail">
<img src="images/lorempixel.technics.2.jpeg" alt="Lorem Pixel image" class="img">
<p>Gestural interaction</p>
</a>
</div>
<div class="project" id="project8">
<a href="#" class="thumbnail">
<img src="images/lorempixel.city.2.jpeg" alt="Lorem Pixel image" class="img">
<p>Design tools</p>
</a>
</div>
</div>
<!-- include JavaScript near the end of the HTML file -->
<script src="https://code.jquery.com/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>