-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.php
More file actions
42 lines (39 loc) · 1.58 KB
/
services.php
File metadata and controls
42 lines (39 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services - TechTrendz</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<?php include('header.php'); ?>
<section class="services-intro">
<div class="container">
<h1>Our Premium Services</h1>
<p>Explore our top-notch technology services designed to accelerate your business growth.</p>
</div>
</section>
<section class="services-list">
<div class="container2">
<div class="service-card">
<h2>Cloud Solutions</h2>
<p>Transform your business with our comprehensive cloud services, including migration, management, and optimization.</p>
</div>
<div class="service-card">
<h2>Cybersecurity</h2>
<p>Protect your digital assets with our advanced cybersecurity services, ensuring your business remains secure and compliant.</p>
</div>
<div class="service-card">
<h2>AI & Machine Learning</h2>
<p>Leverage the power of AI and machine learning to gain insights, automate processes, and drive innovation.</p>
</div>
<div class="service-card">
<h2>IT Consulting</h2>
<p>Get expert advice and strategic planning from our IT specialists to optimize your technology investments.</p>
</div>
</div>
</section>
<?php include('footer.php'); ?>
</body>
</html>