Skip to content

Instantly share code, notes, and snippets.

@Whateverinc
Last active February 5, 2021 05:24
Show Gist options
  • Save Whateverinc/8856af4d43f46baf1b669f8cedb6969c to your computer and use it in GitHub Desktop.
Save Whateverinc/8856af4d43f46baf1b669f8cedb6969c to your computer and use it in GitHub Desktop.
Blank html page for those who just want a quick way to showcase an html page.
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>Title of the Page
</title>
<meta name="description" content="Description of the Page">
<meta name="keywords" content="Enter, keywords, separated, by, commas">
<meta name="author" content="John Doe">
<!-- REMOVE line below if you don't want to use a css reset file-->
<link href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css" rel="stylesheet" type="text/css">
<style>
/*insert your css below*/
</style>
</head>
<body>
<h1>Header Title</h1>
<p>This will be the paragraph.</p>
<!-- REMOVE line below if you don't want to use jQuery-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"></script>
<script>
//insert your js below//
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment