Between <body> and </body> comes 99% of HTML. And whatever comes between <head> and </head> is mainly for linking (js, css files) and directive purpose (browsers and search engines).
<body> starts when </head> closes; and when </body> closes, it is immediately followed by the end of root element </html>.
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<p> It takes everything — div, main, article, section, aside, header, footer, figure, figcaption, blockquote, ins, del, mark, ol, ul, dl, summery, address, date, time, s, u, strong, em, and the remaining. </p>
</body>
</html>
Comments
Post a Comment