Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
blakebyer authored Jul 3, 2024
1 parent f45f24b commit 32c4302
Showing 1 changed file with 63 additions and 9 deletions.
72 changes: 63 additions & 9 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,65 @@
<!DOCTYPE html>
<html>
<head>
<title>Blake Byer's GitHub Pages Site</title>
</head>
<body>
<h1>Blake Byer</h1>
<p>Welcome to my GitHub Pages site! Click the link to go to my curriculum vitae.</p>
<a href=curriculum_vitae.pdf>Curriculum Vitae</a>
</body>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Personal Website</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 5px 0 0;
}
h1 {
margin: 0;
font-size: 2.5em;
}
p {
margin-bottom: 15px;
}
footer {
text-align: center;
padding: 10px 0;
position: fixed;
bottom: 0;
width: 100%;
background-color: #333;
color: #fff;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Welcome to My Personal Website</h1>
</header>
<section>
<p>Hello, I'm Blake Byer. This is my personal website.</p>
<p>Feel free to browse around and visit my curriculum vitae.</p>
<a href=curriculum_vitae.pdf>Curriculum Vitae</a>

</section>
<footer>
&copy; 2024 My Personal Website
</footer>
</div>
</body>
</html>

0 comments on commit 32c4302

Please sign in to comment.