-
Notifications
You must be signed in to change notification settings - Fork 157
/
Copy pathmain_menu.html
83 lines (78 loc) · 3.38 KB
/
main_menu.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
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<!-- saved from url=(0051)file:///home/hemanth/flappysvg2.1-master/index.html -->
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Flappy SVG</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<!-- Bootstrap -->
<link href="style/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="style/main_menu.css" rel="stylesheet">
<link href="style/bootstrap/fonts/stylesheet.css" rel="fonts/stylesheet.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<header>
<nav id="navb" class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a href="https://www.fossasia.org/" target="alt" class="pull-left hidden-xs visible-md visible-lg visible-sm">
<img id="brand-logo" alt="Brand Image" src="images/foss.png"/>
</a>
<div class="navbar-brand">
<p id="heading">FLAPPYSVG</p>
</div>
<button id="bot" type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#collapsable-nav" 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>
</div>
<div id="collapsable-nav" class="collapse navbar-collapse">
<ul id="nav-list" class="nav navbar-nav navbar-right">
<li>
<a href="download.html">
<span class="glyphicon glyphicon-download "></span><br>Download</a>
</li>
<li>
<a href="about.html">
<span class="glyphicon glyphicon-info-sign "></span><br>About</a>
</li>
<li>
<a href="https://github.com/fossasia/flappy-svg/graphs/contributors">
<span class="glyphicon glyphicon-certificate "></span><br>Developers</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<div class="menu list-group">
<h2 class="list-group-item active" id="mainmenu">MAIN MENU</h3>
<a href="index.html" class = "list-group-item spacing" >
NEW GAME
</a>
<a href="howtoplay.html" class = "list-group-item spacing" >
CONTROLS
</a>
<a href="credits.html" class = "list-group-item spacing" >
CREDITS
</a>
<a href="leaderboard.html" class = "list-group-item spacing" >
SCORES
</a>
<a href="links.html" class = "list-group-item spacing" >
LINKS
</a>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="style/bootstrap/js/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="style/bootstrap/js/bootstrap.min.js"></script>
</body></html>