-
Notifications
You must be signed in to change notification settings - Fork 1
/
newindex.html
148 lines (139 loc) · 3.7 KB
/
newindex.html
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html>
<head>
<title>Acid Fog</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
/* Navigation */
body {
margin: 0;
font-family: Arial, sans-serif;
}
.navbar {
overflow: hidden;
background-color: #1f1f1f;
position: fixed;
top: 0;
width: 100%;
}
.navbar a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.navbar a:hover {
background-color: #2BFF36;
}
.active {
background-color: #11A318;
}
/* Parallax */
.parallax {
background-image: url('/siteimage/img1.jpg');
height: 500px;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
.parallax2 {
background-image: url('/siteimage/img2.jpg');
height: 500px;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
.header {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
text-align: center;
}
/* Content */
.content {
background-color: #11F01C;
height: 1000px;
color: white;
text-align: center;
padding-top: 100px;
}
.content2 {
background-color: #A30043;
height: 1000px;
color: white;
text-align: center;
padding-top: 100px;
}
/* Footer */
.footer {
background-color: #1f1f1f;
color: white;
text-align: center;
padding: 10px;
position: absolute;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<!-- Navigation -->
<div class="navbar">
<a class="active" href="#">Home</a>
<a href="#">The Fog is Coming</a>
<a href="#">Merch</a>
<a href="#">Upcoming Shows</a>
<a href="#">Images</a>
<a href="#">Members</a>
</div>
<section class="green-bg">
<div class="content">
<h1>Welcome to Acid Fog</h1>
<p>We are a rock band from Springfield, Illinois.</p>
</div>
</section>
<section class="parallax" style="background-image: url('/siteimage/img1.jpg');">
<div class="header">
<h2>Header Text Goes Here</h2>
</div>
</section>
<section class="dark-green-bg">
<div class="content">
<h3>About Us</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed eleifend sapien auctor leo gravida euismod. Quisque sit amet libero tellus.</p>
</div>
</section>
<section class="parallax" style="background-image: url('/siteimage/img2.jpg');">
<div class="header small-header">
<h3>Header Text Goes Here</h3>
</div>
</section>
<section class="black-bg">
<div class="content">
<h3>Contact Us</h3>
<p>Fill out the form below to get in touch with us:</p>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name"><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email"><br>
<label for="message">Message:</label>
<textarea id="message" name="message"></textarea><br>
<input type="submit" value="Submit">
</form>
</div>
</section>
<footer>
<p>© 2023 Acid Fog. All rights reserved. Designed by Your Name.</p>
</footer>
</body>
</html>