-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubscription.html
105 lines (97 loc) · 3.27 KB
/
subscription.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
95
96
97
98
99
100
101
102
103
104
105
<!doctype html>
<html lang="en">
<head>
<title>KeyLime - Subscription</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>
<section id="top-bar">
<div id="nav-bar">
<div id="logo-container">
<h1 class="logo-text"> KeyLime </h1>
</div>
<div id="search-nav-container">
<div id="search-container">
<input type="text" placeholder="Search..">
</div>
<div id="nav-container">
<a href="index.html">Home</a>
<a href="account.html">Account</a>
<a href="about.html">About</a>
<a class="active" href="subscription.html">Subscription</a>
</div>
</div>
</div>
</section>
</header>
<main class="grid">
<div class="main-page-div"
<div id="profile-section">
<div class="text-container">
<h3> Allie Webber </h3>
</div>
<div class="profile-picture-container">
<img src="images/profile-picture1.jpg" alt="Profile Picture" >
</div>
<div class="text-container">
<h3> About </h3>
<p> Studies criminology at UBC</p>
<p> Lives in Vancouver, British Columbia</p>
<p> Born in Boise, Idaho</p>
</div>
</div>
<div id="content-section">
<div class="text-container">
<h2> Subscribe to KeyLime. </h2>
<h4> Recieve full access to KeyLime and never worry about your privacy again.</h4>
</div>
<hr>
<div class="text-container">
<h3> 5.99 CAD + tax/month</h3>
</div>
</div>
<div id="content-section">
<div class="text-container">
<h2> Single time payment. </h2>
<h4> Pay a one time fee and renew your account as you see fit.</h4>
</div>
<hr>
<div class="text-container">
<h3> 5.99 CAD + tax for 1 month</h3>
</div>
<hr>
<div class="text-container">
<h3> 15.99 CAD + tax for 3 month</h3>
</div>
<hr>
<div class="text-container">
<h3> 29.99 CAD + tax for 6 month</h3>
</div>
<hr>
<div class="text-container">
<h3> 55.99 CAD + tax for 1 year</h3>
</div>
</div>
</div>
</main>
</body>
</html>