add classes to header, start middle, and do footer base

This commit is contained in:
Wes Bryie 2022-02-14 11:03:11 -05:00 committed by GitHub
parent 2b5bb8c863
commit 171c6e169a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 0 deletions

View File

@ -7,8 +7,16 @@
<link href="styles.css" rel="stylesheet">
</head>
<body>
<div id="header">
<h1 class="text-5xl font-bold text-center nunito mt-2.5">
Wes Bryie's Website
</h1>
</div>
<div id="middle">
</div>
<div id="footer" class="ml-3 text-sm">
<p>Made by Wes Bryie. 2022</p>
</div>
</body>
</html>

View File

@ -2,4 +2,7 @@
.nunito {
font-family: 'Nunito Sans', sans-serif;
}
#footer {
background-color: lightslategray;
}