<!-- This is a really basic template -->
<!DOCTYPE html>
<html>
<head>
<title>Hi</title>
</head>
<body>
<p>Hello</p>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Hello World</title>
</head>
<body>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec viverra nec nulla vitae mollis.</p>
</body>
</html>
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>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">