These are sample HTML5 templates to help you save your time when starting coding.
You can use them in two ways.
First: download the HTML5 files you want.
Second: Use the copy/paste option
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Simple HTML Template</title>
<link rel="icon" type="image/x-icon" href="favicon.ico"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content=" ">
<meta name="keywords" content=" ">
</head>
<body>
<h1>IT present</h1>
<p>text on html page</p>
</body>
</html>
text on html page
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>HTML Template with Sample Page</title>
<link rel="icon" type="image/x-icon" href="favicon.ico"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content=" ">
<meta name="keywords" content=" ">
<style>
h1 {color:maroon;}
p {color:red;}
</style>
</head>
<body>
<H1>IT present</H1>
<script type="text/javascript">
document.write("<p>text on html page</p>");
</script>
</body>
</html>
Simple text on HTML page
*the names of your files, whatever you want.