-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirst.html
70 lines (55 loc) · 2.59 KB
/
first.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Quiz App</title>
<link rel="Stylesheet" href="./bootstrap-3.4.1-dist/css/bootstrap.min.css"/>
<link rel="Stylesheet" href="style.css">
</head>
<body>
<nav class="navbar navbar-inverse">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="first.html">Fun Games</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Tic Tac Toe <span class="sr-only">(current)</span></a></li>
<li><a href="index.html">Quiz</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#">Link</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<div class="container">
<h3 class="text-center text-capitalize">Select Your Game</h3>
</div>
<div class="container">
<ul class="list-group bottom">
<li class="list-group-item">Tic Tac Toe <button class="pull-right btn btn-primary vv">Start Game</button></li>
<li class="list-group-item">Quiz corner
<h5 class="v">Category</h5>
<select class="text-center">
<option value="Math">Math</option>
<option value="Math">General Paper</option>
<option value="Math">History</option>
</select>
<button class="pull-right btn btn-primary vv">Start Game
</button></li>
<div class="clear-fix"></div>
</ul>
</div>
<script src="app.js"></script>
</body>
</html>