-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
71 lines (64 loc) · 2.59 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
<!DOCTYPE html >
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="stylesheet" href="./css/index.css">
</head>
<body>
<div id="wrapper">
<div class="menu-toggler">
<div class="circle menu-icon">
<span class="line top"></span>
<span class="line middle"></span>
<span class="line bottom"></span>
</div>
</div>
<div class="menu">
<div class="row h-100">
<div class="col-lg-6">
<div class="items">
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./about.html">About Us</a></li>
<li><a href=""> Contact Us</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="main-title">
<div>
<p>Maycre Mobility is a Line of Business under Maycre Inc. Maycre Mobility’s advocacy is into IOT or Internet on Things. Our focus is the development of Mobile and computer applications that would benefit enterprises and consumers, making them more profitable through continued development and innovation. The company started as a consultancy way back 2013 with other start up BPO’s. Like to mention one of them was Flings Inc.</p>
</div>
</div>
</div>
<div id="particles-js"></div>
<script src="./js/jquery-3.4.1.min.js"></script>
<script src="./js/bootstrap.min.js"></script>
<script src="./js/popper.min.js"></script>
<script src="./js/typingEffect.js"></script>
<script src="./js/particles/particles.min.js"></script>
<script src="./js/particles/app.js"></script>
<script>
$(document).ready(function(){
$('.menu-toggler').on('click',function(){
$('.menu-icon').toggleClass('close-btn');
$('.menu').toggleClass('active');
$(this).toggleClass('position-fixed');
});
});
$('#typed').typing({
strings: ['E-commerce Websites.','Blog Sites.','Personal Websites.'],
color:'#90303d',
typingColor:'#90303d',
stringStartDelay: 0,
loopCount: 999,
cursorChar: '<span style="border:1.5px solid #90303d" />',
typingOpacity: '0',
typeDelay: 70,
});
</script>
</body>
</html>