-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (73 loc) · 2.32 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Frightcraft - Official Website</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
padding: 20px;
background: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header {
background: #333;
color: #fff;
padding: 20px 0;
text-align: center;
}
header h1 {
margin: 0;
}
main {
padding: 20px;
}
footer {
background: #333;
color: #fff;
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
}
a {
color: #333;
}
</style>
</head>
<body>
<header>
<h1>Welcome to Frightcraft</h1>
</header>
<div class="container">
<main>
<h2>About Frightcraft</h2>
<p>Frightcraft is a unique blend of Minecraft gameplay and spine-chilling horror stories. Dive into an immersive experience where the world of Minecraft meets the thrill of scary tales. Whether you're a Minecraft enthusiast or a fan of horror stories, Frightcraft offers an unforgettable experience.</p>
<h2>Features</h2>
<ul>
<li>Engaging Minecraft gameplay</li>
<li>Scary stories narrated alongside the gameplay</li>
<li>Regular updates with new content</li>
<li>Community events and challenges</li>
</ul>
<h2>Get In Touch</h2>
<p>If you have any questions, suggestions, or feedback, feel free to reach out to us at <a href="mailto:[email protected]">[email protected]</a>.</p>
</main>
</div>
<footer>
<p>© 2024 Frightcraft. All rights reserved.</p>
<p><a href="termsofservice.html">Terms of Service</a> | <a href="privacypolicy.html">Privacy Policy</a></p>
</footer>
</body>
</html>