-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.html
126 lines (117 loc) · 4.67 KB
/
services.html
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<html><head><base href="http://www.aikm.ai/services"><title>Services | AIKm</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
header {
background-color: #0066cc;
color: white;
text-align: center;
padding: 1em;
}
nav {
background-color: #f4f4f4;
padding: 1em;
}
nav ul {
list-style-type: none;
padding: 0;
}
nav ul li {
display: inline;
margin-right: 10px;
}
nav ul li a {
text-decoration: none;
color: #333;
}
main {
padding: 20px 0;
}
.service {
background-color: #f9f9f9;
border: 1px solid #ddd;
border-radius: 5px;
padding: 20px;
margin-bottom: 20px;
}
.service h3 {
color: #0066cc;
}
.cta-button {
display: inline-block;
background-color: #0066cc;
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 1em;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>AIKm Services</h1>
<p>Empowering Enterprises through Advanced ML Solutions</p>
</header>
<nav>
<ul>
<li><a href="http://www.aikm.ai">Home</a></li>
<li><a href="http://www.aikm.ai/#_About_AIKm">About</a></li>
<li><a href="http://www.aikm.ai/#_Our_Services">Services</a></li>
<li><a href="http://www.aikm.ai/#_Current_Research_Focus">Research</a></li>
<li><a href="http://www.aikm.ai/#_Get_in_Touch">Contact</a></li>
</ul>
</nav>
<main>
<h2>Our Services</h2>
<p>At AIKm, we offer a range of services designed to help enterprises leverage machine learning, ML, for effective knowledge management. Our offerings include:</p>
<div class="service">
<h3>Collaborative Research Projects</h3>
<p>Partner with our team of expert researchers to tackle your organization's unique knowledge management challenges. We combine cutting-edge ML techniques with your domain expertise to develop innovative solutions.</p>
<!--<a href="http://www.aikm.ai/services/research-projects" class="cta-button">Learn More</a>-->
</div>
<div class="service">
<h3>AIKm Certification Programs</h3>
<p>Elevate your team's skills with our comprehensive certification programs. From foundational ML concepts to advanced applications in enterprise knowledge management, we offer courses tailored to various skill levels and roles.</p>
<!--<a href="http://www.aikm.ai/services/certification" class="cta-button">View Certifications</a>-->
</div>
<div class="service">
<h3>Enterprise Consulting</h3>
<p>Our seasoned consultants work closely with your team to assess your current knowledge management practices, identify opportunities for ML integration, and develop a roadmap for implementation. We provide end-to-end support to ensure successful adoption of ML-powered solutions.</p>
<!--<a href="http://www.aikm.ai/services/consulting" class="cta-button">Consult with Us</a>-->
</div>
<div class="service">
<h3>Workshops and Webinars</h3>
<p>Stay at the forefront of ML in enterprise knowledge management with our regular workshops and webinars. Led by industry experts and academics, these sessions offer practical insights and hands-on experience with the latest tools and techniques.</p>
<!--<a href="http://www.aikm.ai/services/events" class="cta-button">Upcoming Events</a>-->
</div>
<div class="service">
<h3>Industry-Academia Partnerships</h3>
<p>Bridge the gap between theoretical research and practical application. Our partnership program facilitates knowledge exchange between leading academic institutions and forward-thinking enterprises, fostering innovation in ML for knowledge management.</p>
<!--<a href="http://www.aikm.ai/services/partnerships" class="cta-button">Partner with Us</a>-->
</div>
<h3>Custom Solutions</h3>
<p>Don't see exactly what you need? We specialize in developing custom ML solutions for enterprise knowledge management. Contact us to discuss your specific requirements and how we can help.</p>
<!--<a href="http://www.aikm.ai/contact" class="cta-button">Get in Touch</a>-->
</main>
<footer>
<p>© 2024 Machine Learning Institute for Enterprise Knowledge Management, AIKm. All rights reserved. Email: [email protected] </p>
</footer>
</body>
</html>