-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplayer.html
More file actions
35 lines (33 loc) · 1.51 KB
/
Copy pathplayer.html
File metadata and controls
35 lines (33 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<html>
<head>
<title>Player</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Bootstrap -->
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css" rel="stylesheet" media="screen">
<link rel="stylesheet" href="css/leaderboard.css"/>
<style>
.secret-word-div {margin-top: 20px;}
.guessword-letter {padding: .25em 1em;}
.guessword-letter-box {
font: 30px 'Arial', sans-serif;
border: 1px dashed black;
display: inline;
margin: 0 1em;
}
.guess-box {margin: 40px 0 0 20px;}
</style>
</head>
<body ng-app="hangman">
<h1>Player Page</h1>
<ng-view></ng-view>
<script src="http://code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/sugar/1.4.1/sugar-full.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular-route.min.js"></script>
<script src="http://cdn.firebase.com/js/client/2.2.4/firebase.js"></script>
<script src="http://cdn.firebase.com/libs/angularfire/1.0.0/angularfire.min.js"></script>
<script src="js/player.js"></script>
<script src="js/playergame.js"></script>
</body>
</html>