Skip to content
Permalink
3f186d0c70
Switch branches/tags

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?
Go to file
 
 
Cannot retrieve contributors at this time
63 lines (45 sloc) 1.42 KB
<!doctype html>
<html class="no-js" lang="zxx">
<head>
<meta charset="utf-8">
<title>3475 Final Project</title>
<meta name="description" content="Paolo's Speed Typing Game">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="">
<meta property="og:type" content="">
<meta property="og:url" content="">
<meta property="og:image" content="">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<meta name="theme-color" content="#fafafa">
</head>
<body>
<div id="main-menu">
Paolo's Speed Typing Game
</div>
<div id="mainButtonDiv">
<button id="mainButton">START GAME</button>
</div>
<div id="timer">0</div>
<div id="countdown"></div>
<div id="finalScoreDiv">
<span id="length"></span>
<span id="wpm"></span>
<span id="timeLeft"></span>
</div>
<div class="container">
<div id="quoteDisplay"></div>
<div id="authorDisplay"></div>
<textarea id="quoteInput" autofocus></textarea>
</div>
<div id="nextButtonDiv">
<button id="nextButton">Next Quote</button>
</div>
<script src="js/vendor/modernizr-3.11.2.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
</body>
</html>