You should use this template for your html files.
The first/main page in a website should be called index.html
<!DOCTYPE html> <html> <head> <title>#####</title> <link rel="stylesheet" type="text/css" href="styles.css"> <style> </style> </head> <body> ########### </body> </html>
The title on line 4 is what will appear on the page tab inside the web browser – treat it like a book title.
Line 5 links to an external style sheet, the style>…</style> block (lines 6-7) for internal style sheet definitions.
Everything that is to appear on the actual web page should be between the <body>…</body> tags.