-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
94 lines (70 loc) · 3.14 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
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
84
85
86
87
88
89
90
91
92
93
94
<!doctype html>
<html lang="en">
<head>
<title>KeyLime - About Us</title>
<!-- meta tags -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="KeyLime">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Aliasger Rasheed, Cameron Dawson">
<!-- ADOBE FONTS -->
<link rel="stylesheet" href="https://use.typekit.net/kmv0kfi.css">
<!-- GOOGLE FONTS -->
<!-- Quicksand -->
<link href="https://fonts.googleapis.com/css?family=Quicksand:300,400,500,600,700&display=swap" rel="stylesheet">
<!-- Jost -->
<link rel="stylesheet" href="https://indestructibletype.com/fonts/Jost.css" type="text/css" charset="utf-8" />
<!-- Be Vietnam -->
<link href="https://fonts.googleapis.com/css?family=Be+Vietnam:100,100i,400,400i,600,600i,800,800i&display=swap"
rel="stylesheet">
<!-- css files -->
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/grid.css">
</head>
<body>
<header>
<nav id="nav-bar" class="top-bar row">
<div id="logo-cont" class="centerer row">
<a href="homepage.html">
<h1 class="logo-text keylime-logotype"> KeyLime </h1>
</a>
</div>
<div id="search-cont" class="centerer">
<input type="text" class="centerer" placeholder="Search..">
</div>
<div id="nav-cont" class="row">
<a href="account.html">Account</a>
<a href="about.html">About</a>
</div>
</nav>
</header>
<main class="grid x24">
<section id="feed">
<article class="post-cont">
<div id="intro-copy" class=" row">
<h2>    About the Company</h2>
<p>Keylime is a social media platform made for <em> you</em> in a time where corporations do not respect your privacy and sell your personal information. We ask our users to pay a small subscription fee in order to keep their information safe, and their social media advertisement free. </p>
</div>
</article>
<article class="post-cont">
<div id="intro-copy" class=" row">
<h2>    Contact us</h2>
<p> Feel free to contact us anytime with the following information. <br>
Email: [email protected] <br>
Phone: 604-560-9988 <br>
Address: 2579 Victoria Park Ave, Toronto</p>
</div>
</article>
<article class="post-cont">
<div id="intro-copy" class=" row">
<h2>    Company Updates</h2>
<p> <em>November 28, 2019:</em> We have recently added a groups feature for further privacy! Not only is your information always safe with us, but not you can personalize who you are sharing your content with. </p>
<p> <em>July 18, 2019:</em> We slightly lowered our subscription fee so that more people can afford to use social media in privacy! </p>
<p> <em>May 18, 2019:</em> We have adjusted the interface of our content feed! Please contact us to let us know how you feel about these chages. </p>
</div>
</article>
</section>
</main>
</body>
</html>