-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathown-your-data.html
More file actions
122 lines (118 loc) · 5.49 KB
/
own-your-data.html
File metadata and controls
122 lines (118 loc) · 5.49 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
<!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">
<h3 class="card-title my-4">Own Your Data</h3>
<p class="card-text">
Everyone is moving to the cloud, but do you
wonder about any of the following?
</p>
<ul class="card-text">
<li>
Where specifically is my data when it’s “in
the cloud”?
</li>
<li>
Who actually owns my data once it leaves my
walls?
</li>
<li>
What happens if my cloud provider goes out
of business?
</li>
</ul>
<p class="card-text">STARTcloud can help.</p>
<p class="card-text fw-bold mt-4">Data Location</p>
<ul class="card-text">
<li>
Unlike many other cloud companies, with
STARTcloud you know exactly where your data
resides. From the exact datacenter down to
the specific server, there’s no guesswork
wondering where you data lives and who has
control over it.
</li>
</ul>
<p class="card-text fw-bold mt-4">Data Ownership</p>
<ul class="card-text">
<li>
STARTcloud also guarantees you retain
ownership and control of your data, so you
don’t have to worry about unauthorized and
unpredictable usage. What good is data
ownership when your cloud company can still
use your content any way they choose?
</li>
</ul>
<p class="card-text fw-bold mt-4">Data Control</p>
<ul class="card-text">
<li>
With our STARTcloud Appliance at your
location, your data in the STARTcloud data
centers is automatically synched back to
your office. You’ll always have an
up-to-date copy of everything.
</li>
</ul>
<p class="card-text mt-4">
Interested in starting a conversation about
this? Contact us at
<a
class="mail-link"
href="mailto:name@email.com"
>Sales@STARTcloud.com</a
>
</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>