-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
143 lines (136 loc) · 5.05 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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="en">
<head>
<!-- required meta tags -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Dipesh Mahato" />
<meta name="description" content="About - dotCircle" />
<!-- title -->
<title>About | dotCircle</title>
<!-- css -->
<link rel="stylesheet" href="assets/css/about.css" />
<!-- fonts -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@200;300&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- logo and navigation menu -->
<nav class="navbar">
<ul class="navbar__links">
<li class="navbar__logo">
<a href="home.html">
<img src="assets/images/matroid.png" alt="logo" />
</a>
</li>
<li class="navbar__item"><a href="home.html">Home</a></li>
<li class="navbar__item"><a href="product.html">Product</a></li>
<li class="navbar__item"><a href="partners.html">Partners</a></li>
<li class="navbar__item">
<a href="about.html" class="active">About</a>
</li>
<li class="navbar__item"><a href="contact.html">Contact</a></li>
<li class="navbar__toggle"><span class="navbar__bars"></span></li>
</ul>
</nav>
<!-- main layout of the page -->
<main>
<section class="main-page">
<h1>About dotCircle</h1>
<!-- line separator -->
<hr />
<article class="main-page__about-company">
<h2>
<!-- dotCircle, a transformer of your businesses and daily lives with
Conversational AI. -->
We kick ass on.
</h2>
<p>
dotCircle is a Kathmandu-based company specially focused on
Conversational AI made for customer service. We are representing the
next-generation of chatbots, through a fundamentally new way of
thinking, doing and designing user experiences.
</p>
</article>
</section>
<article class="members">
<h1>dotCircle Leadership</h1>
<hr />
<div class="members__member-info">
<figure class="members__card1">
<img src="assets/images/IMG_3520-min.JPG" alt="dipesh" />
<figcaption>
<p class="members__name">Dipesh Babu</p>
<p class="members__position">CEO and Co-founder</p>
</figcaption>
</figure>
<figure class="members__card2">
<img src="assets/images/anish.jpg" alt="anish" />
<figcaption>
<p class="members__name">Anish Ghimire</p>
<p class="members__position">CTO</p>
</figcaption>
</figure>
<figure class="members__card3">
<img src="assets/images/rahul.jpg" alt="rahul" />
<figcaption>
<p class="members__name">Rahul Ratna Das</p>
<p class="members__position">R&D Lead</p>
</figcaption>
</figure>
<figure class="members__card4">
<img src="assets/images/aashutosh.jpg" alt="aashutosh" />
<figcaption>
<p class="members__name">Aashutosh Sapkota</p>
<p class="members__position">Tech Lead, AI & Machine Learning</p>
</figcaption>
</figure>
<figure class="members__card5">
<img src="assets/images/nischal.jpg" alt="nischal" />
<figcaption>
<p class="members__name">Nischal Bhandari</p>
<p class="members__position">Adviser</p>
</figcaption>
</figure>
<figure class="members__card6">
<img src="assets/images/utkrista.jpg" alt="utkrista" />
<figcaption>
<p class="members__name">Utkrista Acharya</p>
<p class="members__position">Project Management</p>
</figcaption>
</figure>
</div>
</article>
</main>
<!-- footer content -->
<footer class="page-footer">
<ul>
<li>
<a href="#"><i class="fab fa-github page-footer--social"></i></a>
<a href="#"><i class="fab fa-facebook-f page-footer--social"></i></a>
<a href="#"><i class="fab fa-twitter page-footer--social"></i></a>
<a href="#"><i class="fab fa-linkedin-in page-footer--social"></i></a>
</li>
</ul>
<p>© 2021 dotCircle. All rights reserved.</p>
</footer>
<!-- js includes -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
$(".navbar__toggle").click(function () {
$(this).toggleClass("active");
$(".navbar__item").fadeToggle("open");
});
});
</script>
</body>
</html>