-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (51 loc) · 2.3 KB
/
Copy pathindex.html
File metadata and controls
53 lines (51 loc) · 2.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="stylesheet" href="/sass/main.scss" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pricing Table</title>
</head>
<body>
<h1 class="clr-primary-400 fs-900 margin-block-32">Hosting Plans</h1>
<div class="container">
<div class="pricing-plans">
<div class="tier | padding-36">
<h2 class="tier__title | fw-700 clr-primary-400 fw-700">Free</h2>
<ul class="tier__feature-list">
<li class="tier__list-item">1 domain</li>
<li class="tier__list-item">5gb of bandwidth</li>
<li class="tier__list-item">1gb of diskspace</li>
<li class="tier__list-item">5,000 monthly uniques</li>
</ul>
<p class="tier__price | fs-800 fw-800">$0<span class="fs-400 fw-400">/month</span></p>
<button class="button">Get started</button>
</div>
<div class="tier | padding-36 bg-primary-400 clr-neutral-100">
<h2 class="tier__title | fw-700 clr-neutral-100">Tiny</h2>
<ul class="tier__feature-list">
<li class="tier__list-item">5 domain</li>
<li class="tier__list-item">250gb of bandwidth</li>
<li class="tier__list-item">5gb of diskspace</li>
<li class="tier__list-item">15,000 monthly uniques</li>
</ul>
<p class="tier__price | fs-800 fw-800">$19<span class="fs-400 fw-400">/month</span></p>
<button class="button" data-type="inverted">Get started</button>
</div>
<div class="tier | padding-36">
<h2 class="tier__title | fw-700 clr-primary-400 fw-700">Large</h2>
<ul class="tier__feature-list">
<li class="tier__list-item">15 domain</li>
<li class="tier__list-item">750gb of bandwidth</li>
<li class="tier__list-item">20gb of diskspace</li>
<li class="tier__list-item">50,000 monthly uniques</li>
</ul>
<p class="tier__price | fs-800 fw-800">$49<span class="fs-400 fw-400">/month</span></p>
<button class="button">Get started</button>
</div>
</div>
</div>
<script type="module" src="/main.js"></script>
</body>
</html>