-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpricing.html
More file actions
63 lines (63 loc) · 2.63 KB
/
pricing.html
File metadata and controls
63 lines (63 loc) · 2.63 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
<!DOCTYPE html>
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Comfortaa' rel='stylesheet'>
<meta charset="UTF-8">
<meta name="description" content="Discusses the diffrerent subscription plans available and their differences.">
<meta name="author" content="Yannick Vaillancourt">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!--Used to rescale pages on different devices, like mobile-->
<title>Ramble</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<header id="header">
<nav>
<a id="logo" href="index.html">
<img height="60" src="Images/logo.png" alt="logo picture"/></a>
<a href="features.html" id="featuresLink">Features</a>
<a href="pricing.html" id="pricingLink">Pricing</a>
<a href="contactpage.html" id="contactLink">Contact Us</a>
</header>
</nav>
</header>
<body style="background-color: rgb(248, 246, 247);">
<div id="caption">Subscription plans</div>
<table id="subscription">
<thead>
<br>
<tr id="subOptions">
<th></th>
<th class="horizontalSpacing">Basic</th>
<th class="horizontalSpacing">Plus</th>
<th class="horizontalSpacing">Premium</th>
</tr>
</thead>
<tbody>
<tr class="verticalSpacing">
<td class="firstColumn">Price</td>
<td>Free</td>
<td>$5/month</td>
<td>$8/month</td>
</tr>
<tr class="verticalSpacing">
<td class="firstColumn">Ad-free</td>
<td class="redtext">No</td>
<td class="greentext">Yes</td>
<td class="greentext">Yes</td>
</tr>
<tr class="verticalSpacing">
<td class="firstColumn">Offline access</td>
<td class="redtext">None</td>
<td class="yellowtext">Downloads only</td>
<td class="greentext">All</td>
</tr>
<tr class="verticalSpacing">
<td class="firstColumn" class="verticalSpacing">Background play</td>
<td class="redtext">No</td>
<td class="redtext">No</td>
<td class="greentext">Yes</td>
</tr>
</tbody>
</table>
</body>
<script src="main.js"></script>
</html>