Answers for "header and footer html"

2

html should the footer be inside body

<!-- The <footer> tag should be used within the <body> tag. -->
<body>
<footer>
</footer>
</body>
Posted by: Guest on December-08-2020
7

html layout

<!DOCTYPE html> <!-- Start of coding page -->
<html> <!-- Start of html coding -->
  <head> <!-- Start of head -->
    <title>TITLE</title> <!-- Title -->
    <script>
      //JavaScript
    </script>
    <style>
      /* CSS */
    </style>
  </head> <!-- End of head -->
  <body> <!-- Start of body -->
    <h1>Hello!</h1>
  </body> <!-- End of body -->
</html> <!-- End of html coding -->
Posted by: Guest on June-21-2020

Code answers related to "header and footer html"

Browse Popular Code Answers by Language