Heuehneje commited on
Commit
55c2149
·
verified ·
1 Parent(s): a91e504

https://anigo.to/

Browse files
Files changed (2) hide show
  1. anime.html +37 -0
  2. index.html +4 -1
anime.html ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width" />
6
+ <title>Anime Collection</title>
7
+ <link rel="stylesheet" href="style.css" />
8
+ </head>
9
+ <body>
10
+ <div class="card">
11
+ <h1>My Anime Collection</h1>
12
+ <div class="anime-grid">
13
+ <div class="anime-item">
14
+ <img src="http://static.photos/technology/320x240/1" alt="Anime 1">
15
+ <h3>Naruto</h3>
16
+ <p>Adventure, Action</p>
17
+ </div>
18
+ <div class="anime-item">
19
+ <img src="http://static.photos/abstract/320x240/2" alt="Anime 2">
20
+ <h3>One Piece</h3>
21
+ <p>Action, Comedy</p>
22
+ </div>
23
+ <div class="anime-item">
24
+ <img src="http://static.photos/nature/320x240/3" alt="Anime 3">
25
+ <h3>Dragon Ball</h3>
26
+ <p>Action, Fantasy</p>
27
+ </div>
28
+ <div class="anime-item">
29
+ <img src="http://static.photos/people/320x240/4" alt="Anime 4">
30
+ <h3>Attack on Titan</h3>
31
+ <p>Drama, Action</p>
32
+ </div>
33
+ </div>
34
+ <p><a href="index.html">Back to Home</a></p>
35
+ </div>
36
+ </body>
37
+ </html>
index.html CHANGED
@@ -14,6 +14,9 @@
14
  Also don't forget to check the
15
  <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
  </p>
 
 
 
17
  </div>
18
- </body>
19
  </html>
 
14
  Also don't forget to check the
15
  <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
  </p>
17
+ <p>
18
+ <a href="anime.html">View My Anime Collection</a>
19
+ </p>
20
  </div>
21
+ </body>
22
  </html>