-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb-hosting.html
117 lines (114 loc) · 4.71 KB
/
web-hosting.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Web Hosting for the Modern Era</title>
<!-- <meta charset="utf-8"> -->
<meta name="robots" content="noindex, nofollow">
<meta name="googlebot" content="noindex, nofollow">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!--MY CSS-->
<link rel="stylesheet" href="css/web-hosting.css">
<!--Favicon-->
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/web-hosting/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/web-hosting/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/web-hosting/favicon/favicon-16x16.png">
<link rel="manifest" href="assets/img/web-hosting/favicon/site.webmanifest">
<link rel="mask-icon" href="assets/img/web-hosting/favicon/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<!-- Preview website --->
<meta property="og:url" content="https://christine445.github.io/web-hosting.html">
<meta property="og:type" content="article">
<meta property="og:title" content="24andfive: Web Hosting for the Modern Era">
<meta property="og:description" content="Go serverless and pay for what you use">
<meta property="og:image" content="assets/img/web-hosting/favicon/android-chrome-384x384.png">
</head>
<body>
<div class="container">
<header>
<img src="assets/img/web-hosting/logo.svg" alt="24andfive logo" class="logo">
<nav>
<a href="#" class="hide-desktop">
<img src="assets/img/web-hosting/ham.svg" alt="toggle menu" class="menu" id="menu">
</a>
<ul class="show-desktop hide-mobile" id="nav">
<li id="exit" class="exit-btn hide-desktop">
<img src="assets/img/web-hosting/exit.svg" alt="exit menu">
</li>
<li><a href="#">home</a></li>
<li><a href="#">services</a></li>
<li><a href="#">about</a></li>
<li><a href="#">contact</a></li>
</ul>
</nav>
</header>
<section>
<img src="assets/img/web-hosting/server.svg" alt="server graphic" class="server">
<h1>Web Hosting for the Modern Era</h1>
<p class="subhead">Go serverless and pay only for what you use</p>
<img src="assets/img/web-hosting/scroll.svg" alt="scroll down" class="scroll hide-mobile show-desktop">
</section>
</div>
<div class="blue-container">
<div class="container">
<ul>
<li>
<img src="assets/img/web-hosting/speed.svg" alt="Speed icon">
<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam.</p>
</li>
<li>
<img src="assets/img/web-hosting/calendar.svg" alt="Calendar icon">
<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam.</p>
</li>
<li>
<img src="assets/img/web-hosting/paypal.svg" alt="PayPal icon">
<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam.</p>
</li>
</ul>
</div>
</div>
<div class="gray-container">
<div class="container">
<ul>
<li>
<figure>
<img src="assets/img/web-hosting/user1.png" alt="User testimonial picture">
<blockquote>"Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor."</blockquote>
<figcaption>- Jane Doe</figcaption>
</figure>
</li>
<li>
<figure>
<img src="assets/img/web-hosting/user2.png" alt="User testimonial picture">
<blockquote>"Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor."</blockquote>
<figcaption>- Richard Moore</figcaption>
</figure>
</li>
</ul>
</div>
</div>
<div class="container">
<h2>Start your free trial now!</h2>
<a href="#" class="cta">Get Started</a>
</div>
<footer>
<div class="footer-container">
<div class="container">
<a href="#">
<img src="assets/img/web-hosting/logo-white.svg" class="logo" alt="24andfive logo">
</a>
<p class="address">Melrose Place, 90210<br>USA</p>
<ul class="footer-links">
<li>
<a href="#">Terms of Service</a>
<a href="#">Privacy Policy</a>
</li>
</ul>
</div>
</div>
</footer>
<!-- Additional Scripts-->
<script src="js/web-hosting.js"></script>
</body>
</html>