Skip to content

Instantly share code, notes, and snippets.

@theptrk
Created May 18, 2020 14:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theptrk/e922b03e2c8e9523448b6eb2e8cc3a01 to your computer and use it in GitHub Desktop.
Save theptrk/e922b03e2c8e9523448b6eb2e8cc3a01 to your computer and use it in GitHub Desktop.
This is a starter html snippet
// js goes here
console.log("hello js")
<!DOCTYPE html>
<html>
<head>
<title>Your Website</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<h1>Hello html</h1>
<script src='app.js'></script>
</body>
</html>
html {
font-size:2em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment