-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (108 loc) · 3.4 KB
/
index.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
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>uHost</title>
<link rel="shortcut icon" href="favicon.png">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:wght@400;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./main.css">
</head>
<body>
<header class="main-header">
<div>
<a href="index.html" class="main-header__brand">
uHost
</a>
</div>
<nav class="main-nav">
<ul class="main-nav__items">
<li class="main-nav__item">
<a href="packages/index.html">Packages</a>
</li>
<li class="main-nav__item">
<a href="customers/index.html">Customers</a>
</li>
<li class="main-nav__item main-nav__item--cta">
<a href="start-hosting/index.html">Start Hosting</a>
</li>
</ul>
</nav>
</header>
<main>
<section id="product-overview">
<h1>Get the freedom you deserve.</h1>
</section>
<section id="plans">
<h1 class="section-title">Choose Your Plan.</h1>
<div>
<article class="plan">
<h1 class="plan__title">FREE</h1>
<h2 class="plan__price">$0/month</h2>
<h3>For hobby projects or small teams.</h3>
<ul class="plan__features">
<li class="plan__feature">1 Workspace</li>
<li class="plan__feature">Unlimited Traffic</li>
<li class="plan__feature">10GB Storage</li>
<li class="plan__feature">Basic Support</li>
</ul>
<div>
<button class="button">CHOOSE PLAN</button>
</div>
</article>
<article class="plan plan--highlighted">
<h1 class="plan__annotation">RECOMMENDED</h1>
<h1 class="plan__title">PLUS</h1>
<h2 class="plan__price">$29/month</h2>
<h3>For ambitious projects.</h3>
<ul class="plan__features">
<li class="plan__feature">5 Workspaces</li>
<li class="plan__feature">Unlimited Traffic</li>
<li class="plan__feature">100GB Storage</li>
<li class="plan__feature">Plus Support</li>
</ul>
<div>
<button class="button">CHOOSE PLAN</button>
</div>
</article>
<article class="plan">
<h1 class="plan__title">PREMIUM</h1>
<h2 class="plan__price">$99/month</h2>
<h3>Your enterprise solution.</h3>
<ul class="plan__features">
<li class="plan__feature">10 Workspaces</li>
<li class="plan__feature">Unlimited Traffic</li>
<li class="plan__feature">Unlimited Storage</li>
<li class="plan__feature">Priority Support</li>
</ul>
<div>
<button class="button">CHOOSE PLAN</button>
</div>
</article>
</div>
</section>
<section id="key-features">
<h1 class="section-title">Many Good Reasons to Stick Around</h1>
<ul>
<li>
<div>
</div>
<p>3,857,000 Trusting Customers</p>
</li>
<li>
<div>
</div>
<p>99.999% Uptime Guarantee</p>
</li>
<li>
<div>
</div>
<p>Lightning Fast CDN</p>
</li>
</ul>
</section>
</main>
</body>
</html>