-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrules.html
More file actions
120 lines (119 loc) · 3.63 KB
/
Copy pathrules.html
File metadata and controls
120 lines (119 loc) · 3.63 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html>
<head>
<title>Aneury's Guessing Game</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href = "css/styles.css" rel ="stylesheet">
</head>
<body>
<!--Navbar-->
<div class="navbar navbar-default navbar-fixed-top">
<div class="container">
<button type ="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class = "icon-bar"></span>
<span class = "icon-bar"></span>
<span class = "icon-bar"></span>
</button>
<a class ="navbar-brand text-info" href ="game.html">Guessing Game</a>
<div class ="collapse navbar-collapse">
<ul class = "nav navbar-nav navbar-right">
<li><a href="index.html">Home</a></li>
<li class ="active"><a href="rules.html">Rules</a></li>
<li><a href="game.html">Play</a></li>
</ul>
</div>
</div>
</div>
<!--End of Navbar-->
<!--Main Content-->
<div class="jumbotron">
<div class="container">
<!--Title-->
<div class = "row">
<div class = "col-sm-12">
<h1>The Rules</h1>
</div>
</div>
<!--End of Title-->
<!--Rule 1-->
<div class="row">
<div class="col-sm-12">
<h2>First, I will pick a random number between 1-100.</h2>
<b class = "glyphicon glyphicon-random "></b>
</div>
</div>
<!--End of Rule 1-->
<!--Rule 2-->
<div class="row">
<div class="col-sm-12">
<h2>Then, you will have 5 chances to guess this number.</h2>
<b class = "glyphicon glyphicon-search"></b>
</div>
</div>
<!--End of Rule 2-->
<!--Rule 3-->
<div class = "row">
<div class="col-sm-12">
<h2>Every time you guess, I will give you a hint.</h2>
<b class = "glyphicon glyphicon-info-sign"></b>
</div>
</div>
<!--End of Rule 3-->
<!--Rule 4-->
<div class ="row">
<div class="col-sm-12">
<h2>Only numbers are valid inputs.</h2>
<b class = "glyphicon glyphicon-ok"></b>
</div>
</div>
<!--End of Rule 4-->
<!--Rule 5-->
<div class = "row">
<div class="col-sm-12">
<h2>In the end, you will either be a</h2>
<div class ="row">
<div class ="col-sm-4">
<h3>Winner</h3>
<b class = "glyphicon glyphicon-thumbs-up"></b>
</div>
<div class ="col-sm-4">
<h3>or</h3>
<b class = "glyphicon glyphicon-transfer"></b>
</div>
<div class ="col-sm-4">
<h3>Loser</h3>
<b class = "glyphicon glyphicon-thumbs-down"></b>
</div>
</div>
</div>
</div>
<!--End of Rule 5-->
<!--Talk-->
<div class ="row">
<div class="col-sm-12">
<h2>So who are you?</h2>
</div>
</div>
<!--End of Talk-->
<!--Buttons-->
<div class = "row">
<div class = "col-sm-12">
<a class = "btn btn-primary btn-lg" href="game.html">Play Game</a>
</div>
</div>
<!--End of Buttons-->
</div>
</div>
<!--End of Main Content-->
<!--Copyright-->
<div>
<p>© 2015 Fullstack Foundations. Aneury Casado</p>
</div>
<!--End of Copyright-->
<!--Script-->
<script src="http://code.jquery.com/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<!--End of Scripts-->
</body>
</html>