Answers for "What is the general structure of a HTML document?"

-1

structure of an html document

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>A website</title>
  </head>
  <body>
  	...
  </body>
</html>
Posted by: Guest on September-03-2020

Code answers related to "What is the general structure of a HTML document?"

Browse Popular Code Answers by Language