-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact-us.html
More file actions
70 lines (67 loc) · 2.64 KB
/
contact-us.html
File metadata and controls
70 lines (67 loc) · 2.64 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
<!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">Contact Us</h3>
<p class="card-text">
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. You can reach us at:
</p>
<a class="mail-link" href="mailto:name@email.com"
>Sales@STARTcloud.com</a
>
</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>