Accidentally, I placed my footer
within the main
tag which initially displayed correctly. However, upon correcting it, the footer
ended up displaying between the header
and the main
sections... This project is extremely important for school and the deadline is tomorrow. If anyone could assist me with this issue, I would greatly appreciate it as I have been searching for hours without finding what went wrong, and it's starting to drive me crazy! Any help will be highly valued!
Here's the link to the site.
html{
box-sizing: border-box;
font-size: 62.5%;
font-family: 'Fira Sans';
}
...
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Blue Monday</title>
<link rel="icon" href="./assets/img/devine.png">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<!-- <link href="https://fonts.googleapis.com/css?family=Fira+Sans" rel="stylesheet"> -->
</head>
<body>
...
</body>
</html>