Skip to content

Instantly share code, notes, and snippets.

@johnsonjo4531
Last active September 4, 2019 02:56
Show Gist options
  • Save johnsonjo4531/cc117c8eccf06a674ab8bd3c91934f09 to your computer and use it in GitHub Desktop.
Save johnsonjo4531/cc117c8eccf06a674ab8bd3c91934f09 to your computer and use it in GitHub Desktop.
Principles of e-commerce: Modern JavaScript Crash-Course
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Hello</title>
</head>
<body>
<h1>Hello HTML!</h1>
<p>Check your console for JS output!</p>
<script type="application/javascript" src="script.js"></script>
</body>
</html>
console.log("Hello JS!");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment