Spaces:
Running
Running
Update index.html
Browse filesPlease write me HTML for a web page in the style of a 90s geocities site. Include css in the style tag and placeholder images.
- index.html +35 -21
index.html
CHANGED
@@ -1,24 +1,38 @@
|
|
1 |
<!DOCTYPE html>
|
2 |
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>
|