-
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
63 additions
and
9 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 |
---|---|---|
@@ -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> | ||
© 2024 My Personal Website | ||
</footer> | ||
</div> | ||
</body> | ||
</html> | ||
|