gallery/grid-n-view.html

46 lines
844 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Grid n' View</title>
<link rel="stylesheet" href="css/grid-n-view.css" />
<script src="grid-n-view.js"></script>
<style>
</style>
<script>
</script>
</head>
<body onload="setup()">
<div class="gallery">
<!-- lightbox -->
<div class="lightbox">
<img>
<div class="button close"></div>
</div>
<!-- gallery: content -->
<img src="images/500px/1.JPG" caption="Caption text">
<img src="images/500px/2.JPG">
<img src="images/500px/3.JPG">
<img src="images/500px/DSC08102.jpg">
<img src="images/500px/4.JPG">
<img src="images/500px/5.JPG">
<img src="images/500px/DSC08102.jpg">
<img src="images/500px/6.JPG">
<img src="images/500px/DSC08102.jpg">
<img src="images/500px/2.JPG">
<img src="images/500px/5.JPG">
</div>
</body>
</html>
<!-- vim:set ts=4 sw=4 : -->