Skip to content

Commit

Permalink
Begun Work On Website
Browse files Browse the repository at this point in the history
  • Loading branch information
6thought authored Feb 14, 2024
1 parent 27bf5e6 commit cbc44cc
Showing 1 changed file with 70 additions and 1 deletion.
71 changes: 70 additions & 1 deletion BoredomGames/index.html
Original file line number Diff line number Diff line change
@@ -1,2 +1,71 @@
<!-- Initial website design scrapped, WIP. -->
<h1> WIP </h1>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BoredomGames</title>
<style>
/* CSS Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
}
.header, .footer {
background-color: #333;
color: white;
text-align: center;
padding: 1em 0;
}
.nav {
background-color: #444;
overflow: hidden;
}
.nav a {
float: left;
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.nav a:hover {
background-color: #ddd;
color: black;
}
.main {
padding: 20px;
}
.footer {
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>

<div class="header">
<h1>BoredomGames v0.1 Alpha</h1>
</div>

<div class="nav">
<a href="#home">Home</a>
<a href="#services">Games</a>
<a href="#about">Tools</a>
<a href="#contact">Other</a>
</div>

<div class="main">
<h2> <center> WIP </center> </h2>
<p> <center> WIP </center> </p>
</div>

<div class="footer">
<p> &copy; 2024 BoredomGames</p>
</div>

</body>
</html>

0 comments on commit cbc44cc

Please sign in to comment.