Last active
August 15, 2022 19:51
-
-
Save zamicol/58bd33933333bf7f1132926bf1c0eca3 to your computer and use it in GitHub Desktop.
HTML starter template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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