Review of HTML
Basic structure
code: html
<!doctype html> <!-- Declare the type of document -->
<html lang="ja"> <!-- Setting language -->
<head>
<!-- meta data -->
</head>
<body>
<!-- The part displayed on the web -->
</body>
</html> <!-- Close -->
The main thing to change is the head and body tags
Reference