Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Construct3Tutorial_MackenzieFox/index.html
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
32 lines (28 sloc)
1.1 KB
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> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Construct3MarioDemo</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"> | |
<link rel="manifest" href="appmanifest.json"> | |
<meta name="apple-mobile-web-app-capable" content="yes"> | |
<link rel="apple-touch-icon" sizes="128x128" href="icons/icon-128.png"> | |
<link rel="apple-touch-icon" sizes="256x256" href="icons/icon-256.png"> | |
<link rel="apple-touch-icon" sizes="512x512" href="icons/icon-512.png"> | |
<link rel="icon" type="image/png" href="icons/icon-512.png"> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<div id="fb-root"></div> | |
<noscript> | |
<div id="notSupportedWrap"> | |
<h2 id="notSupportedTitle">This content requires JavaScript</h2> | |
<p id="notSupportedMessage">JavaScript appears to be disabled. Please enable it to view this content.</p> | |
</div> | |
</noscript> | |
<script src="scripts/supportCheck.js"></script> | |
<script src="scripts/offlineClient.js"></script> | |
<script src="scripts/main.js"></script> | |
<script src="scripts/register-sw.js"></script> | |
</body> | |
</html> |