Answers for "HTML document Anatomy"

0

anatomy of a html document

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>My test page</title>
  </head>
  <body>
    <p>This is my page</p>
  </body>
</html>
Posted by: Guest on February-12-2021
0

anatomy of a html document

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>My test page</title>
  </head>
  <body>
    <p>This is my page</p>
  </body>
</html>
Posted by: Guest on February-12-2021

Browse Popular Code Answers by Language