-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.php
More file actions
60 lines (43 loc) · 1.17 KB
/
Copy pathabout.php
File metadata and controls
60 lines (43 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<link rel="stylesheet" href="css/about.css">
</head>
<body>
<?php
include('nav.php');
?>
<div class="content">
<div class="mission">
<h1> Mission </h1>
<p>
Reddit 2.0 encourages people to share stories they have about any events they see around them.
Through Reddit 2.0 Features, people can create accounts to write their own stories and comment on other stories.
We think people's voice is important so Reddit 2.0 is there for anyone to speak up and share their stories.
</p>
</div>
<div class="features">
<h1> Features </h1>
<div class="list">
<ul>
<li> Sign in with an Existing Account </li>
<li> Create a New Account </li>
<li> Create your Stories </li>
<li> Comment on Stories </li>
</ul>
</div>
</div>
<div class="signup">
<h1>Join the Reddit 2.0 Community!
<form action="signup.php" method="post">
<input type="submit" value="Reddit 2.0">
</form>
</h1>
</div>
</div>
</body>
</html>