-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathgallery.html
More file actions
117 lines (111 loc) · 3.99 KB
/
Copy pathgallery.html
File metadata and controls
117 lines (111 loc) · 3.99 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
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>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA==" crossorigin="anonymous" />
<link rel="stylesheet" href="css/utilities.css">
<link rel="stylesheet" href="css/styles.css" />
<title>cloud4 | storage 4 life</title>
</head>
<body>
<h1>cloud4</h1>
<div class="navbar">
<div class="container flex">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</div>
<!-- Head -->
<section class="features-head bg-primary py-3">
<div class="container grid">
<div>
<h1 class="xl">Gallery</h1>
<p class="lead">
Check out the gallery of cloud4, showing what separates us from the
competition
</p>
</div>
<img src="images/server.png" alt="">
</div>
</section>
<section class="features-main my-2">
<div class="container grid grid-3">
<div class="card flex">
<i class="fas fa-shopping-bag fa-3x"></i>
<p>"cloud4 is like a family to,<br>
they helped to put my wig<br>
shop in the internet"<br>
Stacy, 1 year in the cloud4
</div>
<div class="card flex">
<i class="fas fa-gamepad fa-3x"></i>
<p>
<p>"Good price<br>
I have my own streaming plataform now"<br>
Bob, 3 months in the cloud4
</p>
</div>
<div class="card flex">
<i class="fas fa-laptop-code fa-3x"></i>
<p>
<p>"Friendly and<br>
always available support"<br>
Juno, 2 years in the cloud4
</p>
</div>
<div class="card flex">
<i class="fas fa-lock fa-3x"></i>
<p>
<p>Safety is very important<br>
and I have that in cloud4"<br>
Julia, 7 months in the cloud4
</p>
</div>
<div class="card flex">
<i class="fas fa-glasses fa-3x"></i>
<p>
<p>Now that I am online<br>
my sales are skyrocketing"<br>
Karina, 6 months in the cloud4
</p>
</div>
<div class="card flex">
<i class="fas fa-app-store-ios fa-3x"></i>
<p>
<p>"Their app is amazing"<br>
Kelly, 2 months in the cloud4
</p>
</div>
</div>
</section>
<footer class="footer bg-dark py-5">
<div class="container grid grid-3">
<div>
<h1>cloud4
</h1>
<p>Copyright © 2021</p>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<div class="social">
<a href="#"><i class="fab fa-github fa-2x"></i></a>
<a href="#"><i class="fab fa-facebook fa-2x"></i></a>
<a href="#"><i class="fab fa-instagram fa-2x"></i></a>
<a href="#"><i class="fab fa-twitter fa-2x"></i></a>
</div>
</div>
</footer>
</body>
</html>