bitlicker commited on
Commit
7adeeed
·
1 Parent(s): 5472a8f

Update index.html

Browse files

Please write me HTML for a web page in the style of a 90s geocities site. Include css in the style tag and placeholder images.

Files changed (1) hide show
  1. index.html +35 -21
index.html CHANGED
@@ -1,24 +1,38 @@
1
  <!DOCTYPE html>
2
  <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>
13
- You can modify this app directly by editing <i>index.html</i> in the
14
- Files and versions tab.
15
- </p>
16
- <p>
17
- Also don't forget to check the
18
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank"
19
- >Spaces documentation</a
20
- >.
21
- </p>
22
- </div>
23
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  </html>
 
1
  <!DOCTYPE html>
2
  <html>
3
+ <head>
4
+ <title>My 90s Geocities Site</title>
5
+ <style>
6
+ body {
7
+ background-color: #FFCCCC;
8
+ font-family: Arial, sans-serif;
9
+ text-align: center;
10
+ }
11
+ img {
12
+ border: 3px solid #FF6699;
13
+ }
14
+ h1 {
15
+ color: #CC0066;
16
+ font-size: 24px;
17
+ }
18
+ .links {
19
+ padding: 12px;
20
+ color: #000099;
21
+ text-decoration: none;
22
+ }
23
+ .links:hover {
24
+ color: #660099;
25
+ }
26
+ </style>
27
+ </head>
28
+ <body>
29
+ <h1>Welcome to My 90s Geocities Site!</h1>
30
+ <img src="https://via.placeholder.com/150x150" alt="Placeholder image 1">
31
+ <p>Here you will find all sorts of interesting information about my interests and hobbies.</p>
32
+ <a href="#" class="links">Link 1</a> |
33
+ <a href="#" class="links">Link 2</a> |
34
+ <a href="#" class="links">Link 3</a><br>
35
+ <img src="https://via.placeholder.com/150x150" alt="Placeholder image 2">
36
+ <p>Thank you for visiting my site. Please come back soon!</p>
37
+ </body>
38
  </html>