-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (78 loc) · 2.3 KB
/
index.html
File metadata and controls
88 lines (78 loc) · 2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Retro Website</title>
<style>
body {
font-family: 'Arial', sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
}
header {
background-color: #3366cc;
color: #fff;
text-align: center;
padding: 20px;
}
nav {
background-color: #999;
padding: 10px;
text-align: center;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 15px;
}
.main-content {
padding: 20px;
}
.image-container {
float: right;
margin-top: -40px;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px 0;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>Your Retro Website</h1>
<div class="image-container">
<img src="your-image-url-placeholder" alt="Image Placeholder" style="max-width: 150px; height: auto;">
</div>
</header>
<nav>
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Services</a>
<a href="#">Contact</a>
<a href="#">More</a>
<a href="#">Explore</a>
</nav>
<div class="main-content">
<h2>Welcome to Your Retro Journey!</h2>
<p>This website takes you on a nostalgic trip back to the early days of the internet, capturing the essence of 1991-style web design. Explore our content, learn about our history, and discover the simplicity of the online world in its infancy.</p>
<h3>Featured Sections</h3>
<p>Explore our featured sections to dive deeper into the retro charm:</p>
<ul>
<li><a href="#">Classic Designs</a></li>
<li><a href="#">Tech Flashbacks</a></li>
<li><a href="#">Digital Trends</a></li>
</ul>
</div>
<footer>
© 2024 Your Retro Website. All rights reserved.
</footer>
</body>
</html>