Last active
September 4, 2019 02:56
-
-
Save johnsonjo4531/cc117c8eccf06a674ab8bd3c91934f09 to your computer and use it in GitHub Desktop.
Principles of e-commerce: Modern JavaScript Crash-Course
This file contains 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" /> | |
<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> |
This file contains 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
console.log("Hello JS!"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment