Skip to content
Permalink
master
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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Emoji Match</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/normalize.css">
<link href="https://fonts.googleapis.com/css?family=Shrikhand" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>
<body>
<!-- navigation -->
<h1>EMOJI MATCH</h1>
<br/>
<ul id="buttons">
<button type="button" class="btn btn-default" value="Refresh Page" onClick="window.location.reload()"><li>New Game</li></button>
</ul>
<!-- timer -->
<h3>
<span class="label label-danger">
<span id="minutes">00</span>:<span id="seconds">00</span>
</span>
</h3>
<!-- welcome message -->
<h3>
<span class="label label-success">
Player Name: <span id="myUsername"></span>
</span>
</h3>
<!-- match counter -->
<h3>
<span class="label label-info">
Matches: <span id="matchesScore"></span>
</span>
</h3>
<!-- match counter -->
<h3>
<span class="label label-warning">
High Score: <span id="highScore"></span>
</span>
</h3>
<br/>
<!-- cards -->
<div class="wrap">
<div class="game">
</div>
</div>
<script src='//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src="js/main.js"></script>
<script>getUsername();</script>
</body>
</html>