-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathabout.php
More file actions
41 lines (31 loc) · 1.14 KB
/
about.php
File metadata and controls
41 lines (31 loc) · 1.14 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
<!DOCTYPE html>
<html>
<head>
<title>About Screen</title>
<link rel="apple-touch-icon" href="appicon.png" />
<link rel="apple-touch-startup-image" href="startup.png">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="viewport" content="width=device-width, user-scalable=no" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<link href="style.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="chosen/chosen.css" />
<script src="chosen/chosen.jquery.js" type="text/javascript"></script>
</head>
<body>
<div class="picture">
<img src="strandsm.png"/>
</div>
<div class="title">
<h1>About MetaBlog</h1>
</div>
<div class="explanation">
<p>Will contain information about the app including things like purpose, how to use, faqs, etc.</p>
</div>
<div class="buttonarea">
<form action="login.php" id="someform" method="get">
<input type="submit" class="medium red awesome" value="Back" />
</form>
</div>
</body>
</html>