Spaces:
Running
Running
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="width=device-width" /> | |
| <title>Anime Collection</title> | |
| <link rel="stylesheet" href="style.css" /> | |
| </head> | |
| <body> | |
| <div class="card"> | |
| <h1>My Anime Collection</h1> | |
| <div class="anime-grid"> | |
| <div class="anime-item"> | |
| <img src="http://static.photos/technology/320x240/1" alt="Anime 1"> | |
| <h3>Naruto</h3> | |
| <p>Adventure, Action</p> | |
| </div> | |
| <div class="anime-item"> | |
| <img src="http://static.photos/abstract/320x240/2" alt="Anime 2"> | |
| <h3>One Piece</h3> | |
| <p>Action, Comedy</p> | |
| </div> | |
| <div class="anime-item"> | |
| <img src="http://static.photos/nature/320x240/3" alt="Anime 3"> | |
| <h3>Dragon Ball</h3> | |
| <p>Action, Fantasy</p> | |
| </div> | |
| <div class="anime-item"> | |
| <img src="http://static.photos/people/320x240/4" alt="Anime 4"> | |
| <h3>Attack on Titan</h3> | |
| <p>Drama, Action</p> | |
| </div> | |
| </div> | |
| <p><a href="index.html">Back to Home</a></p> | |
| </div> | |
| </body> | |
| </html> |