Answers for "simple html document template"

2

basic html template

Basic Html Template:
<html>
  <head>
    <title>
    	/* document title here */
    </title>    
    /* document meta information and external file include written here */
  </head>
  <body>
  	/* document body goes here */
  </body>
</html>
Posted by: Guest on April-12-2020
1

basic html template

<!DOCTYPE html>
<html>
<body>

<h1>My First Heading</h1>
<p>My first paragraph.</p>

</body>
</html>
Posted by: Guest on May-21-2020

Browse Popular Code Answers by Language