-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
84 lines (71 loc) · 4.22 KB
/
about.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
<html lang="en">
<head>
<title>About Us Page </title>
<link rel="stylesheet" href="about.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<!-- Font Awesome -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet" />
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet" />
<!-- MDB -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/6.4.1/mdb.min.css" rel="stylesheet" />
</head>
<body>
<header>
<img src="images/claysys-logo.png" alt="error">
<ul class="navbar">
<li><a href="login.html">Login</a></li>
<li><a href="registration.html">Registration</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</header>
<div class="about-section">
<div class="inner-container">
<h1 style="text-align: center;">About Us</h1>
<p class="text">
ClaySys was founded to deliver technology solutions that positively impacted the business, versus just
technology solutions that were technically excellent, but may not have delivered on the key business
objectives. We achieve this through a structured methodology that maps the business impact on every
aspect of the technology solution being designed and developed. The core team at ClaySys are tenured IT
Consultants who were involved in large scale technology projects starting from the early nineties. The
innovative key-employee retention policies and incentives that we have structured ensure that our key
employees stay with ClaySys for the long term, thus delivering incremental value to our clients, as we
understand their business better. Our investments into product development to address some of the major
holistic pain points related to software development and maintenance, keep us on the cutting edge of
technology and well positioned to deliver exponential value to our clients.
</p>
</div>
</div>
<div style="margin-top: 30px;">
<footer class="text-center text-white" style="background-color: #ececec;">
<div class="container pt-4">
<!-- Section: Social media -->
<section class="mb-4">
<!-- Facebook -->
<a class="btn btn-link btn-floating btn-lg text-dark m-1" href="https://www.facebook.com/ClaySys"
role="button" data-mdb-ripple-color="dark"><i class="fab fa-facebook-f"></i></a>
<!-- Twitter -->
<a class="btn btn-link btn-floating btn-lg text-dark m-1" href="https://twitter.com/claysys"
role="button" data-mdb-ripple-color="dark"><i class="fab fa-twitter"></i></a>
<!-- Google -->
<a class="btn btn-link btn-floating btn-lg text-dark m-1" href="https://www.claysys.com/"
role="button" data-mdb-ripple-color="dark"><i class="fab fa-google"></i></a>
<!-- Instagram -->
<a class="btn btn-link btn-floating btn-lg text-dark m-1"
href="https://www.instagram.com/claysystech" role="button" data-mdb-ripple-color="dark"><i
class="fab fa-instagram"></i></a>
<!-- Linkedin -->
<a class="btn btn-link btn-floating btn-lg text-dark m-1"
href="https://www.linkedin.com/company/claysys-technologies-pvt-ltd" role="button"
data-mdb-ripple-color="dark"><i class="fab fa-linkedin"></i></a>
</section>
</div>
<div class="text-center text-dark p-3" style="background-color: rgba(0, 0, 0, 0.2);">
© 2023 Copyright:Sreejith K M
</div>
</footer>
</div>
</body>
</html>