forked from makersquare/imagilizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (33 loc) · 1.46 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
<html>
<head>
<!-- Set the Title in the Browser Window Bar -->
<title>Imagilizer</title>
<link href='http://fonts.googleapis.com/css?family=Denk+One' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="imagilizer.css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src= "imagilizer.js" type= "text/javascript"></script>
<!-- TODO: source jQuery -->
<!-- TODO: source jQuery UI -->
<!-- TODO: create and source a javascript file (i.e. 'imagilizer.js') -->
<!-- TODO: link jQuery UI theme -->
</head>
<body>
<div id="container">
<h1>Imagilizer</h1>
<div id="sidebar">
<img src="images/one.jpg" data-caption="Wikipedia." width="50" />
<img src="images/two.jpg" data-caption="Cappucino" width="50" />
<img src="images/three.jpg" data-caption="Peach Tea" width="50" />
<img src="images/four.jpg" data-caption="Iced Coffee" width="50" />
<img src="images/five.jpg" data-caption="Americano" width="50" />
<img src="images/six.jpg" data-caption="House coffee" width="50" />
<img src="images/seven.jpg" data-caption="Green Tea" width="50" />
<img src="images/eight.jpg" data-caption="Latte" width="50" />
<img src="images/nine.jpg" data-caption="Decaf" width="50" />
</div>
<div id="panel">
<h1 class="caption"></h1>
</div>
</div>
</body>
</html>