-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathexample.html
More file actions
31 lines (31 loc) · 766 Bytes
/
example.html
File metadata and controls
31 lines (31 loc) · 766 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
26
27
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
<script type="text/javascript" src="js/picbox.js"></script>
<link rel="stylesheet" href="css/picbox.css" type="text/css" media="screen" />
<style type="text/css">
body {
background-color: #fff;
font-family: arial, helvetica, sans-serif;
color: #000;
}
h1, p {
text-align: center;
}
p {
margin-top: 100px;
}
a {
font-weight: bold;
color: #f00;
}
</style>
</head>
<body>
<h1>Picbox example page</h1>
<p>
<a href="example.jpg" rel="lightbox" title="Double click for full size... (unless you have a large monitor)">Click here</a> to view a picture inside Picbox.
</p>
</body>
</html>