<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Horror Game Developer | itch.io</title>
<style>
:root {
--blood-red: #8B0000;
--dark-bg: #1a1a1a;
--text-color: #e0e0e0;
}
body {
background-color: var(--dark-bg);
color: var(--text-color);
font-family: 'Courier New', monospace;
line-height: 1.6;
margin: 0;
padding: 0;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
header {
text-align: center;
padding: 40px 0;
border-bottom: 2px solid var(--blood-red);
}
h1 {
color: var(--blood-red);
font-size: 3em;
text-transform: uppercase;
letter-spacing: 3px;
margin: 0;
}
.tagline {
font-style: italic;
margin-top: 10px;
color: #888;
}
.section {
margin: 40px 0;
padding: 20px;
background: rgba(0, 0, 0, 0.3);
border-radius: 5px;
}
.games-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
margin-top: 20px;
}
.game-card {
background: rgba(0, 0, 0, 0.5);
padding: 15px;
border-radius: 5px;
transition: transform 0.3s;
}
.game-card:hover {
transform: translateY(-5px);
}
.game-card img {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 3px;
}
.social-links {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 20px;
}
.social-links a {
color: var(--text-color);
text-decoration: none;
padding: 10px 20px;
border: 1px solid var(--blood-red);
border-radius: 3px;
transition: all 0.3s;
}
.social-links a:hover {
background: var(--blood-red);
color: white;
}
footer {
text-align: center;
padding: 20px;
margin-top: 40px;
border-top: 2px solid var(--blood-red);
}
</style>
</head>
<body>
<header>
Your Name
Crafting Nightmares Through Code
</header>
<section class="section">
About Me
Welcome to my dark corner of the internet! I'm a passionate horror game developer dedicated to creating spine-chilling experiences that will keep you up at night. My journey in game development began with a love for horror stories and a desire to bring them to life through interactive experiences.
</section>
<section class="section">
My Games
Game Title 1
A psychological horror experience that will test your sanity.
Game Title 2
Survive the night in this atmospheric horror adventure.
Game Title 3
Explore the depths of darkness in this survival horror game.
</section>
<section class="section">
Connect With Me
</section>
<footer>
© 2024 Your Name. All rights reserved.
</footer>