Sample HTML for Development – Base Markup and Simple

Generic sample Html page for starting up your project. Copy and paste, then save as an .html file.

<!DOCTYPE html>
<html>
<head>
<script src="myfirstscript.js"></script>
<link rel="stylesheet" type="text/css" href="myfirststyle.css">
</head>
<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>

text with no tags
<br />
<hr />
<a id="sampleid" class="sampleclass" href="http://Codercream.com"> anchor link with href, sampleid, sampleclass </a>

</body>
</html>