-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (81 loc) · 3.02 KB
/
index.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
<!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>
<h1>Maycre</h1>
<p>Making Enterprises and Consumers more profitable through continued development and innovation. <br/>
Our team develops <span id="typed" class="font-weight-bold"></span><span class="cursor"></span></p>
</div>
</div>
<section>
<div class="container mb-5">
<div class="row justify-content-center">
<div class="col-lg-4">
<a class="work" href="./grocerydistrict.html">
<img src="./img/proj1.jpg" alt="">
<div class="description">
<h5>GroceryDistrict</h5>
<p>Ecommerce</p>
</div>
</a>
</div>
</div>
</div>
</section>
</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:'#00adb5',
typingColor:'#00adb5',
stringStartDelay: 0,
loopCount: 999,
cursorChar: '<span style="border:1.5px solid #00adb5" />',
typingOpacity: '0',
typeDelay: 70,
});
</script>
</body>
</html>