forked from ghofree/lab3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (109 loc) · 4.48 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!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 -->
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
</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>
<form id="projectForm" role="form">
<div class="form-group">
<label for="project">Please change the project:</label>
<select class="form-control" id="project">
<option value="#project1">Waiting in line</option>
<option value="#project2">Needfinding</option>
<option value="#project3">Prototyping</option>
<option value="#project4">Heuristic evaluation</option>
<option value="#project5">Visualization</option>
<option value="#project6">Social design</option>
<option value="#project7">Gestural interaction</option>
<option value="#project8">Design tools</option>
</select>
</div>
<div class="form-group">
<label for="width">To width (in pixels):</label>
<input type="number" class="form-control" id="width" placeholder="Width">
</div>
<div class="form-group">
<label for="description">And to description:</label>
<input type="text" class="form-control" id="description" placeholder="Project desicription">
</div>
<button id="submitBtn" type="button" class="btn btn-default">Submit</button>
</form>
<script src="https://code.jquery.com/jquery.js"></script>
<script src="https://code.jquery.com/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/introHCI.js"></script>
</body>
</html>