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?
template-scorm-game/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.
68 lines (59 sloc)
1.65 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 lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>PPE</title> | |
<meta name="description" content="Personal Protective Equipment"> | |
<meta name="author" content="Suzanne Tyers"> | |
<script src="shared/common.js" type="text/javascript"></script> | |
<link rel="stylesheet" href="./shared/style.css"> | |
<link id="pagestyle" href="" rel="stylesheet" type="text/css" /> | |
</head> | |
<body id="package" data-scores="[]"> | |
<main id="startgame"> | |
<!-- <img draggable="false" src="assets/background.gif" /> --> | |
<h1>Introduction</h1> | |
<summary> | |
<p>This is the screen where the overall game is introduced</p> | |
</summary> | |
<button class="next">Start round one</button> | |
</main> | |
<main id="startround" hidden> | |
<!-- <img draggable="false" src="assets/background.gif" /> --> | |
<h1 class="title"></h1> | |
<summary> | |
<p class="description"></p> | |
</summary> | |
<button class="next">Start the game</button> | |
</main> | |
<main id="game" data-counter="0" hidden> | |
<!-- <img draggable="false" src="assets/background.gif" /> --> | |
<h1 class="title"></h1> | |
<summary> | |
<p>Game goes here.</p> | |
</summary> | |
<section id="tooltip" class="hide" hidden> | |
<h2></h2> | |
<p></p> | |
</section> | |
<section id="notification" class="hide" hidden> | |
<p>xxx</p> | |
</section> | |
<button class="next">Finish the game</button> | |
</main> | |
<main id="endround" hidden> | |
<h1 class="title"></h1> | |
<summary> | |
<p>Congratulations, you have completed this round.</p> | |
</summary> | |
<button class="next">Start next round</button> | |
</main> | |
<main id="endgame" hidden> | |
<h1>Simulation Completed</h1> | |
<summary> | |
<p>GAME OVER</p> | |
</summary> | |
</main> | |
</body> | |
<script type="text/javascript" src="./shared/router.js"></script> | |
</html> |