-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
105 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Blake Byer - Projects</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
line-height: 1.6; | ||
margin: 0; | ||
padding: 0; | ||
background-color: #f0f0f0; | ||
} | ||
.container { | ||
max-width: 800px; | ||
margin: 20px auto; | ||
background-color: #fff; | ||
padding: 20px; | ||
box-shadow: 0 0 10px rgba(0,0,0,0.1); | ||
border-radius: 5px; | ||
} | ||
header { | ||
background-color: #333; | ||
color: #fff; | ||
padding: 10px 0; | ||
text-align: center; | ||
border-radius: 5px; | ||
} | ||
h1 { | ||
margin: 0; | ||
font-size: 2.5em; | ||
} | ||
nav { | ||
margin-top: 10px; | ||
} | ||
nav ul { | ||
list-style: none; | ||
padding: 0; | ||
display: flex; | ||
justify-content: center; | ||
} | ||
nav ul li { | ||
margin: 0 10px; | ||
} | ||
nav ul li a { | ||
text-decoration: none; | ||
color: #fff; | ||
background-color: #333; | ||
padding: 10px 20px; | ||
border-radius: 5px; | ||
transition: background-color 0.3s; | ||
} | ||
nav ul li a:hover { | ||
background-color: #555; | ||
} | ||
section { | ||
margin-top: 20px; | ||
} | ||
.post { | ||
margin-bottom: 20px; | ||
} | ||
.post h2 { | ||
margin: 0; | ||
font-size: 1.8em; | ||
} | ||
.post p { | ||
margin-bottom: 10px; | ||
} | ||
footer { | ||
text-align: center; | ||
padding: 10px 0; | ||
position: fixed; | ||
bottom: 0; | ||
left: 0; | ||
right: 0; | ||
background-color: #333; | ||
color: #fff; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<header> | ||
<h1>Blake Byer</h1> | ||
<nav> | ||
<ul> | ||
<li><a href="index.html">Home</a></li> | ||
<li><a href="blog.html">Blog</a></li> | ||
<li><a href="projects.html">Projects</li> | ||
</ul> | ||
</nav> | ||
</header> | ||
<h1>Projects</h1> | ||
</section> | ||
<footer> | ||
© Blake Byer <span id="currentYear"></span> | ||
</footer> | ||
</div> | ||
|
||
<script> | ||
document.getElementById('currentYear').textContent = new Date().getFullYear(); | ||
</script> | ||
</body> | ||
</html> |