-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
71 lines (71 loc) · 2.88 KB
/
about.php
File metadata and controls
71 lines (71 loc) · 2.88 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
<?php
require("php/common.php");
?>
<!DOCTYPE html>
<html>
<head>
<title>Bread Bin</title>
<link href="css/common.css" rel="stylesheet" type="text/css">
<link href="css/about.css" rel="stylesheet" type="text/css">
<link href='http://fonts.googleapis.com/css?family=Roboto:400' rel='stylesheet' type='text/css'>
<link rel="icon" type="image/png" href="img/favicon.png" />
<script src="js/vendor/jquery-1.11.2.min.js"></script>
</head>
<body>
<div id="aboutHeader">
<a name="Overview">
<div class="leftHeader">
<div class="logo">
<img src="img/favicon.png">
</div>
<div class="titleHeader">
<h3>Bread Bin</h3>
</div>
<div class="navlinksHeader">
<ul class="headerNav">
<li class="linkItem">
<a href="#Overview">Overview</a>
</li>
<li class="linkItem">
<a href="#features">Features</a>
</li>
<li class="linkItem">
Slices
</li>
<li class="linkItem">
Toasters
</li>
<li class="linkItem">
Contact
</li>
</ul>
</div>
</div>
<div class="centerHeader">
<h1>
Welcome
</h1>
<p class="headerTag">Bread Bin is a placeholder</p>
<button class="headerLoginBut">Register Now</button>
<p class="headerTagRegister">Already have an account? <a href="">Login now</a></p>
</div>
<div class="rightHeader">
<a class="loginHeaderLink" href="">Login</a>
</div>
</div>
<div id="features">
<a name="features"></a>
<div id="featuresLeft"></div>
<div id="featuresCenter">
<div class="centerContentf">
<h2>Features</h2>
<p class="featuresStart">Bread Bin is more than just a massive collection of unique content and a welcoming and kind community, it's a place you can share your pictures, thoughts and your day with friends, family and other members of the site.</p>
<p class="featuresStart" style="margin-bottom: 2;">There are two main ways of showing your thoughts on a post -</p>
<h4>Toast</h4>
<p>If you like the content you see, then you can turn slices into delicious toast. Toasting is your way of showing appreciation for what members upload and will encourage them to upload more and more content that you, and many other members, will enjoy. Each toast you make will </p>
</div>
</div>
<div id="featuresRight"></div>
</div>
</body>
</html