-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
124 lines (118 loc) · 4.56 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
115
116
117
118
119
120
121
122
123
124
<!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 href="https://fonts.googleapis.com/css?family=Anton" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet">
<link rel="stylesheet" href="shared.css">
<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 class="plan__list">
<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>1 Workspace</li>
<li>Unlimited Traffic</li>
<li>10GB Storage</li>
<li>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>5 Workspaces</li>
<li>Unlimited Traffic</li>
<li>100GB Storage</li>
<li>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>10 Workspaces</li>
<li>Unlimited Traffic</li>
<li>Unlimited Storage</li>
<li>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 class="key-features__list">
<li class="key-feature">
<div class="key-feature__image">
</div>
<p class="key-feature__description">3,8857,000 Trusting Customers</p>
</li>
<li class="key-feature">
<div class="key-feature__image">
</div>
<p class="key-feature__description">99.999% Uptime Guarantee</p>
</li>
<li class="key-feature">
<div class="key-feature__image">
</div>
<p class="key-feature__description">Lightning Fast CDN</p>
</li>
</ul>
</section>
</main>
<footer class="main-footer">
<nav>
<ul class="main-footer__links">
<li class="main-footer__link">
<a href="#">Support</a>
</li>
<li class="main-footer__link">
<a href="#">Terms of Use</a>
</li>
</ul>
</nav>
</footer>
</body>
</html>