Created
October 27, 2017 16:45
-
-
Save fullsushidev/de2cce1d9fc4fb8707e7c4e3e2f9f110 to your computer and use it in GitHub Desktop.
Basic HTML file | JavaScript Quickstart tutorial | Back4App
This file contains hidden or 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"> | |
<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