Add Web Code

This commit is contained in:
Wesley A. Bryie 2021-10-25 10:38:29 -04:00
parent 43bb5b4094
commit 27ac9d2ed1
2 changed files with 31 additions and 0 deletions

15
index.html Normal file
View File

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<title>Welcome to my site!</title>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Zen+Kurenaido&display=swap" rel="stylesheet">
</head>
<body>
<h1 id="title">Welcome to my personal website! This won't host much for now but expect way more in the future!</h1>
<h6 id="font-credit"><a href="https://fonts.google.com/specimen/Zen+Kurenaido">Font</a></h6>
<h6 id="ghpage-credit">Hosted by <a href="https://github.com">GitHub</a></h6>
</body>
</html>

16
styles.css Normal file
View File

@ -0,0 +1,16 @@
html {
font-family: 'Zen Kurenaido', sans-serif;
background-color: #ede1be;
}
#title {
text-align: center;
}
#font-credit {
text-align: center;
}
#ghpage-credit {
text-align: center;
}