Created
June 9, 2021 16:48
-
-
Save oceanEcho/ebbc0ff4bf86e059a06cc4b924c81421 to your computer and use it in GitHub Desktop.
iframe gallery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Document</title> | |
| <link rel="stylesheet" href="style.css" /> | |
| </head> | |
| <body> | |
| <main> | |
| <h1 class="title">Gallery</h1> | |
| <figure> | |
| <iframe | |
| src="https://picsum.photos/500/300" | |
| frameborder="0" | |
| width="500" | |
| height="300" | |
| name="display" | |
| ></iframe> | |
| </figure> | |
| <ul class="image-list"> | |
| <li> | |
| <a href="https://picsum.photos/500/300" target="display" | |
| ><img src="https://picsum.photos/64/64" alt="Random picture" | |
| /></a> | |
| </li> | |
| <li> | |
| <a href="https://picsum.photos/500/300" target="display" | |
| ><img src="https://picsum.photos/64/64" alt="Random picture" | |
| /></a> | |
| </li> | |
| <li> | |
| <a href="https://picsum.photos/500/300" target="display" | |
| ><img src="https://picsum.photos/64/64" alt="Random picture" | |
| /></a> | |
| </li> | |
| <li> | |
| <a href="https://picsum.photos/500/300" target="display" | |
| ><img src="https://picsum.photos/64/64" alt="Random picture" | |
| /></a> | |
| </li> | |
| <li> | |
| <a href="https://picsum.photos/500/300" target="display" | |
| ><img src="https://picsum.photos/64/64" alt="Random picture" | |
| /></a> | |
| </li> | |
| <li> | |
| <a href="https://picsum.photos/500/300" target="display" | |
| ><img src="https://picsum.photos/64/64" alt="Random picture" | |
| /></a> | |
| </li> | |
| </ul> | |
| </main> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment