-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathservices.html
More file actions
85 lines (83 loc) · 3.21 KB
/
services.html
File metadata and controls
85 lines (83 loc) · 3.21 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
<!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>HABL Managed Services</title>
<!-- custom css -->
<link rel="stylesheet" href="assets/css/style.css">
<!-- bootstrap css v5.1 -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<section class="services-section">
<div class="container">
<h3>Platforms</h3>
<div class="services-container">
<div class="row">
<div class="col-md-6">
<div class="row">
<div class="col-6">
<h4>Cloud Support</h4>
</div>
<div class="col-6">
<p>
AWS, DigitalOcean <br>
Google Cloud Platform <br>
Vultr, Linode, OnApp <br>
</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="row">
<div class="col-6">
<h4>Databases</h4>
</div>
<div class="col-6">
<p>
MySQL <br>
PostgreSQL <br>
MS SQL Server <br>
</p>
</div>
</div>
</div>
</div>
<div class="row mt-5">
<div class="col-md-6">
<div class="row">
<div class="col-6">
<h4>Servers</h4>
</div>
<div class="col-6">
<p>
Linux <br>
Windows <br>
</p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="row">
<div class="col-6">
<h4>Applications</h4>
</div>
<div class="col-6">
<p>
WordPress, Joomla! <br>
Magento, Drupal <br>
DotNetNuke <br>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- bootstrap js v5.1 -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>