Add Web Code
This commit is contained in:
parent
43bb5b4094
commit
27ac9d2ed1
|
@ -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>
|
|
@ -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;
|
||||
}
|
Loading…
Reference in New Issue