Skip to content

Instantly share code, notes, and snippets.

@zamicol
Last active August 15, 2022 19:51
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zamicol/58bd33933333bf7f1132926bf1c0eca3 to your computer and use it in GitHub Desktop.
Save zamicol/58bd33933333bf7f1132926bf1c0eca3 to your computer and use it in GitHub Desktop.
HTML starter template
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="HTML template, Starter page">
<meta name="author" content="Zamicol">
<title>Simple HTML Starter Template (Boilerplate)</title>
<link rel="stylesheet" href="style.css">
<script src="myscripts.js"></script>
</head>
<body>
<p>Body</p>
</body>
<footer>
<p>Footer</p>
</footer>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment