-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
132 lines (125 loc) · 5.32 KB
/
index.html
File metadata and controls
132 lines (125 loc) · 5.32 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!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>Structure4Notes</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<div class="header">
<div class="container">
<div class="row d-flex">
<img
src="assets/logo-big.jpg"
class="logo-big img-fluid mx-auto mt-4"
alt="..."
/>
</div>
<div class="row justify-content-md-center">
<div class="menu-link col-md-auto fs-3 p-3 text-center">
<a href="index.html">Home</a>
</div>
<div class="menu-link col-md-auto fs-3 p-3 text-center">
<a href="own-your-data.html">Own Your Data</a>
</div>
<div class="menu-link col-md-auto fs-3 p-3 text-center">
<a href="contact-us.html">Contact Us</a>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row my-4">
<div class="col">
<div class="card shadow">
<div class="card-body">
<p class="card-text fs-3 text-center">
STARTcloud is an innovative platform lowering
your virtualization costs and helping ensure you
eliminate the risk of data loss both on-site and
in the cloud. We solve real problems for
companies just like yours.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<!-- Card 1 -->
<div class="col-md-6 col-lg-3 my-4">
<div class="card shadow">
<div class="card-body">
<h5 class="card-title mb-4">Own Your Data</h5>
<p class="card-text">
Concerned about data ownership in the cloud?
STARTcloud gives you the confidence to move to
the cloud, without giving up control over your
data.
</p>
</div>
</div>
</div>
<!-- Card 2 -->
<div class="col-md-6 col-lg-3 my-4">
<div class="card shadow">
<div class="card-body">
<h5 class="card-title mb-4">Rescue Your Data</h5>
<p class="card-text">
Is your data backed up? Whether it's data in
your office or data in the cloud, STARTcloud
helps ensure you're always protected when the
inevitable happens.
</p>
</div>
</div>
</div>
<!-- Card -->
<div class="col-md-6 col-lg-3 my-4">
<div class="card shadow">
<div class="card-body">
<h5 class="card-title mb-4">Easy Virtualization</h5>
<p class="card-text">
Easy virtualization both on-site and in the
cloud You need control with a consistent set of
tools to manage servers, regardless of where
they live.
</p>
</div>
</div>
</div>
<!-- Card -->
<div class="col-md-6 col-lg-3 my-4">
<div class="card shadow">
<div class="card-body">
<h5 class="card-title mb-4">
STARTcloud Appliance
</h5>
<p class="card-text">
Be the cloud Your data should exist both on-site
and in the cloud, with automatic synchronization
between the two.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="card shadow footer mt-5">
<img
src="assets/logo-small.png"
class="logo-small mx-auto my-4"
alt="..."
/>
<p class="copyright text-center pb-4 mb-0">
©2022 STARTcloud, Inc.
</p>
</div>
</div>
</body>
</html>