Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@fullsushidev
Created October 27, 2017 16:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save fullsushidev/de2cce1d9fc4fb8707e7c4e3e2f9f110 to your computer and use it in GitHub Desktop.
Save fullsushidev/de2cce1d9fc4fb8707e7c4e3e2f9f110 to your computer and use it in GitHub Desktop.
Basic HTML file | JavaScript Quickstart tutorial | Back4App
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta content="Back4App Inc" name="author">
<title>Sample App| JavaScript Quickstart | Back4App</title>
<!—Here goes the Parse SDK for JavaScript -->
<script src="https://unpkg.com/parse/dist/parse.min.js"></script>
</head>
<body>
<div>
<header>
<!-- Add your header image here -->
</header>
<h3>Hello World!</h3>
<!-- Add your content here -->
<script>
// PASTE YOUR TEST CODE HERE
</script>
</div>
<br><br><br>
<footer>
<!-- Add your footer message/logo here -->
</footer>
<!-- Add your JS script here -->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment