forked from arbaztalk2me/host.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Packages.html
92 lines (91 loc) · 3.79 KB
/
Packages.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
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name = "viewport" content="width = device-width, initial-scale= 1.0">
<title>Packages</title>
<link href="https://fonts.googleapis.com/css2?family=Metal+Mania&display=swap" rel="stylesheet">
<link rel = "stylesheet" href="shared.css">
<link rel = "stylesheet" href="packagesCss.css">
</head>
<body>
<div class="backdrop"></div>
<div class="background"></div>
<header class="main-header">
<div>
<button class="toggle-button">
<span class="toggle-button__bar"></span>
<span class="toggle-button__bar"></span>
<span class="toggle-button__bar"></span>
</button>
<a href="index.html" class="main-header__brand">
<img src="uhost-icon.png" alt="uHost - Your favorite hosting company">
</a>
</div><nav class="main-nav">
<ul class="main-nav__items">
<li class="main-nav__item">
<a href="index.html">Packages</a>
</li>
<li class="main-nav__item">
<a href="Customers.html">Customers</a>
</li>
<li class="main-nav__item main-nav__item--cta">
<a href="Start Hosting.html">Start Hosting</a>
</li>
</ul>
</nav>
</header>
<nav class="mobile-nav">
<ul class="mobile-nav__items">
<li class="mobile-nav__item">
<a href="packages.html">Packages</a>
</li>
<li class="mobile-nav__item">
<a href="customers.html">Customers</a>
</li>
<li class="mobile-nav__item mobile-nav__item--cta">
<a href="start Hosting.html">Start Hosting</a>
</li>
</ul>
</nav>
<main>
<section class="package" id="plus">
<a href="#">
<h1 class = "package__title">Our PLUS Plan</h1>
<h2 class="package__badge">RECOMMENDED</h2>
<h2 class = "package__subtitle">The most popular choice of our Customers.</h2>
<p class = "package__info">Benifits from increased storage and faster support to ensure that your mission-critical data and applications are always available!</p>
</a>
</section>
<section class="package" id="free">
<a href="#">
<h1 class = "package__ title">Our FREE Plan</h1>
<h2 class = "package__subtitle">An extremely solid start into our hosting world.</h2>
<p class = "package__info">Get started immediately at zero cost!</p>
</a>
</section>
<div class="clearfix"></div>
<section class="package" id="premium">
<a href="#">
<h1 class = "package__title">Our PREMIUM Plan</h1>
<h2 class = "package__subtitle">All your enterprise needs. Instant support, guarenteed uptime</h2>
<p class = "package__info">The best solution for small to large enterprises. Because hosting should not be in the way!</p>
</a>
</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>
<script src="shared.js"></script>
</body>
</html>