-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
90 lines (85 loc) · 3.65 KB
/
Copy pathservices.html
File metadata and controls
90 lines (85 loc) · 3.65 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
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services - AusDAIS</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="container">
<div class="logo">
<img src="images/logogreen.png" alt="AusDAIS Logo">
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li class="dropdown">
<a href="about.html">About</a>
<ul class="dropdown-content">
<li><a href="about.html#about-ausdais">About AusDAIS</a></li>
<li><a href="about.html#sustainability">Sustainability</a></li>
<li><a href="about.html#career">Career</a></li>
<li><a href="about.html#investors">Investors and Partners</a></li>
<li><a href="about.html#board">Board of Directors</a></li>
<li><a href="about.html#advisors">Advisors and Consultants</a></li>
</ul>
</li>
<li><a href="research.html">Research</a></li>
<li><a href="https://nullnuller.github.io/self-citation/">Self-Citation Dashboard</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="https://www.ausdais.au/blog/">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="privacy.html">Privacy Policy</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section id="data-consultancy">
<h2>Data Consultancy</h2>
<p>Providing expert data consultancy services to help businesses make data-driven decisions.</p>
</section>
<section id="student-services">
<h2>Student Services</h2>
<p>Offering comprehensive support for students pursuing careers in data analytics.</p>
</section>
</main>
<footer>
<div class="container">
<div class="footer-logo">
<img src="images/logogreen.png" alt="AusDAIS Logo">
<p>AUSTRALIAN DATA ANALYTICS AND INNOVATIVE SOLUTIONS PTY</p>
<p>ACN: 643823741</p>
</div>
<div class="footer-links">
<div>
<h4>Learn More</h4>
<ul>
<li><a href="products.html">Products</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Get In Touch</a></li>
</ul>
</div>
<div>
<h4>Important Links</h4>
<ul>
<li><a href="about.html#sustainability">Sustainability</a></li>
<li><a href="about.html#career">Careers</a></li>
<li><a href="about.html#investors">Investors & Partners</a></li>
<li><a href="about.html#board">Board of Directors</a></li>
<li><a href="about.html#advisors">Advisors & Consultants</a></li>
</ul>
</div>
<div>
<h4>Let's Connect!</h4>
<p>Email: info@ausdais.au</p>
</div>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>