forked from fossasia/flappy-svg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
51 lines (47 loc) · 2.31 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<title>Flappy-SVG About</title>
<!--<meta http-equiv="refresh" content="0; url=flappy.svg">-->
<!-- from http://stackoverflow.com/questions/4472891/how-can-i-disable-zoom-on-a-mobile-web-page -->
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
<!-- from http://www.w3schools.com/html/html_charset.asp -->
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<link rel="icon" type="image/ico" href="images/favicon.ico" />
<link href="style/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="style/about.css" rel="stylesheet">
<link href="style/bootstrap/fonts/stylesheet.css" rel="fonts/stylesheet.css">
</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>
</div>
</div>
</nav>
</header>
<h2>ABOUT</h2>
<h3>~Flappy Bird in SVG</h3>
<br/><br/><br/>
<div class="container">
<div id="introtext">
Flappy-SVG is a game written mainly using Javascript and SVG. It comes with a variety of interesting characters, backgrounds and obstacles, that the user can choose from.It is easy to understand and contribute to.
</div>
<div class="row">
<div class="col-sm-8 col-md-8 col-lg-8" >
Be a Developer, <a href="https://github.com/fossasia/flappy-svg/blob/master/Contributing.md">Start contributing!</a>
</div>
<div class="col-sm-4 col-md-4 col-lg-4">
<a type="button" class="btn btn-success" href="https://fossasia.github.io/flappy-svg">PLAY NOW</a>
</div>
</div>
</div>
</body>
</html>