-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (41 loc) · 1.32 KB
/
index.html
File metadata and controls
41 lines (41 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DATAmazin</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<header>
<h1>Welcome to DATAmazin</h1>
<nav>
<ul>
<li><a href="about.html">About Us</a></li>
<li><a href="blog/index.html">Blog</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Our Services</h2>
<hr>
<p>We specialize in Microsoft Power BI and Fabric, providing tailored solutions to help businesses harness the power of their data.</p>
<ul>
<li>Data Analysis and Visualization</li>
<li>Business Intelligence Strategy</li>
<li>Implementation of Microsoft Power BI Tools</li>
<li>Training and Support</li>
</ul>
</section>
<section>
<h2>Latest Insights</h2>
<p>Check out our blog for the latest trends and insights in Business Intelligence.</p>
</section>
</main>
<footer>
<p>© 2024 <a href="about.html">DATAmazin</a> All rights reserved.</p>
</footer>
<script src="assets/js/main.js"></script>
</body>
</html>