deepsite-project / index.html
Ghxxxst's picture
Create a 2d video game that crosses world of warcraft with meathheads
aca80db verified
raw
history blame contribute delete
741 Bytes
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>My static Space</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="card">
<h1>Welcome to Methcraft!</h1>
<p>A twisted 2D game that crosses World of Warcraft with meth addicts.</p>
<p>
<a href="game.html" class="play-button">Play Now</a>
</p>
</div>
<style>
.play-button {
display: inline-block;
padding: 10px 20px;
background-color: #4a2b0f;
color: #f1c40f;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
margin-top: 20px;
}
.play-button:hover {
background-color: #5a3b1f;
}
</style>
</body>
</html>