Recently in class I have been tasked with making a web page. I made the page - I was expecting a high grade (it's nothing special but we're starting out in HTML, didn't even touch CSS yet), but to my surprise I failed the task.
Apparently, you're not supposed to put a <center> tag before a <body> tag.
My .html file looked something like this:
<!DOCTYPE html>
<html>
<head>
<title>filler</title>
<meta charset="UTF-8"/>
</head>
<center>
<body>
<p>filler</p>
</body>
</html>
Is it actually not allowed to put a tag before a tag? If so, what would be a better way to align it? (maybe body style?)