Reputation: 163
Pretty simple question. Why does this error occur, and how do i correct it?
running visual studio express 2012 for web.
Thank you in advance
Upvotes: 1
Views: 1175
Reputation: 1487
Your question is incredibly vague but I can tell you what you're doing wrong.
You probably have your <footer>
tag outside of your <body>
tag.
<!DOCTYPE HTML>
<html>
<head>
</head>
<body>
</body>
<footer>
</footer>
</html>
So you probably have something that looks similar to that, however it should look like this:
<!DOCTYPE HTML>
<html>
<head>
</head>
<body>
<footer>
</footer>
</body>
</html>
Upvotes: 0