Skip to content

Instantly share code, notes, and snippets.

@tripplyons
Last active May 9, 2017 17:08
Show Gist options
  • Save tripplyons/0188fa92bc6dd06df8b7 to your computer and use it in GitHub Desktop.
Save tripplyons/0188fa92bc6dd06df8b7 to your computer and use it in GitHub Desktop.
HTML template
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Template</title>
<!-- Put your CSS below -->
<style>
h1 {
color: red;
}
</style>
</head>
<body>
<h1>Template</h1>
<!-- Put your JavaScript below -->
<script>
alert("Hi!");
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment