free html template basic code example
Example 1: 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>
Example 2: basic html template
<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>