Answers for "what is html explain the structure of html file"

3

html structure

<!DOCTYPE html>
<html>
<head>
	<title></title>
</head>
<body>

</body>
</html>
Posted by: Guest on November-07-2020
-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 html explain the structure of html file"

Browse Popular Code Answers by Language