-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
44 lines (44 loc) · 1.57 KB
/
about.html
File metadata and controls
44 lines (44 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - Business Intelligence Consulting Firm</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<header>
<h1>About Us</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="blog/index.html">Blog</a></li>
<li><a href="mlbapi/mlb-schedule.html">MLB Schedule</a></li>
<li><a href="mlbapi/mlb-scores.html">MLB Scores</a></li>
<li><a href="mlbapi/mlb-standings.html">MLB Standings</a></li>
<li><a href="mlbapi/mlb-today-scores.html">MLB Today Scores</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Our Mission</h2>
<p>To empower small and medium size businesses with data-driven insights and innovative solutions using Microsoft Power BI and Fabric.</p>
</section>
<section>
<h2>Our Vision</h2>
<p>To be a leading consulting firm recognized for transforming data into actionable intelligence.</p>
</section>
<section>
<h2>Meet Our Team</h2>
<ul>
<li>Tom Greene - Founder & BI Consultant</li>
</ul>
</section>
</main>
<footer>
<p>© 2024 <a href="https://www.datamazin.com">DATAmazin</a>. All rights reserved.</p>
</footer>
<script src="assets/js/main.js"></script>
</body>
</html>