1234567891011121314151617181920212223242526272829303132333435363738 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>CSSBox Example Page</title>
- <link rel="stylesheet" href="cssbox.css" />
- </head>
- <body>
- <h1>This is an example page for CSSBox, available on <a href="https://notabug.org/SylvieLorxu/CSSBox">NotABug</a> and <a href="https://github.com/TheLastProject/CSSBox">GitHub</a>.</h1>
- <h2>All images on this example page are from <a href="https://unsplash.com/" target="_blank">Unsplash</a>, available under <a href="http://creativecommons.org/publicdomain/zero/1.0/" target="_blank">Creative Commons Zero 1.0</a>.</h2>
- <div class="cssbox">
- <a id="image1" href="#image1"><img class="cssbox_thumb" src="example_images/eBDdgbM5dSo.jpeg" height="300" width="300" />
- <span class="cssbox_full"><img src="example_images/eBDdgbM5dSo.jpeg" /></span>
- </a>
- <a class="cssbox_close" href="#void"></a>
- <a class="cssbox_next" href="#image2">></a>
- <p><a href="https://unsplash.com/photos/eBDdgbM5dSo" target="_blank">Image by Paul Jarvis</a></p>
- </div>
- <div class="cssbox">
- <a id="image2" href="#image2"><img class="cssbox_thumb" src="example_images/UklXbPE-Hos.jpeg" height="300" width="300" />
- <span class="cssbox_full"><img src="example_images/UklXbPE-Hos.jpeg" /></span>
- </a>
- <a class="cssbox_close" href="#void"></a>
- <a class="cssbox_prev" href="#image1"><</a>
- <a class="cssbox_next" href="#image3">></a>
- <p><a href="https://unsplash.com/photos/UklXbPE-Hos" target="_blank">Image by Joseph Barrientos</a></p>
- </div>
- <div class="cssbox">
- <a id="image3" href="#image3"><img class="cssbox_thumb" src="example_images/2W5LoumSdfw.jpeg" height="300" width="300" />
- <span class="cssbox_full"><img src="example_images/2W5LoumSdfw.jpeg" /></span>
- </a>
- <a class="cssbox_close" href="#void"></a>
- <a class="cssbox_prev" href="#image2"><</a>
- <p><a href="https://unsplash.com/photos/2W5LoumSdfw" target="_blank">Image by Sebastian Gabriel</a></p>
- </div>
- </body>
- </html>
|