Last active
September 2, 2020 09:50
-
-
Save mmmunk/914508ddc0dc4db79c4290fdca9e1e75 to your computer and use it in GitHub Desktop.
HTML5-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
body { | |
background-color: white; | |
color: black; | |
font-family: sans-serif; | |
font-size: 100%; | |
} |
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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Title</title> | |
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no"> | |
<meta name="application-name" content="MyWebApp"> | |
<meta name="description" content="Short description for search engines."> | |
<meta name="keywords" content="Keyword1,Keyword2,Keyword3"> | |
<meta name="author" content="My Name"> | |
<meta name="generator" content="By hand!"> | |
<link rel="stylesheet" type="text/css" href="HTML5-template.css"> | |
<script src="external_javascript.js"></script> | |
<style> | |
</style> | |
</head> | |
<body> | |
Body | |
See also: http://getskeleton.com | |
<script> | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment