-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (102 loc) · 3.8 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QUICK</title>
<link rel="stylesheet" href="css/style2.css">
</head>
<body>
<!-- header start -->
<header>
<div class="container">
<div class="logo">
<img src="img/logo.png" alt="quick">
</div>
<nav class="menu-bar">
<ul class="menu-bar-list">
<li><a href="#">Overviews</a></li>
<li><a href="#">Landings</a></li>
<li><a href="#">Pages</a></li>
<li><a href="#">Apps</a></li>
<li><a href="#">Docs</a></li>
</ul>
</nav>
<div class="menu-container">
<div class="menu-icon"></div>
<div class="menu-icon"></div>
<div class="menu-icon"></div>
</div>
</div>
</header>
<!-- header ends -->
<!-- Banner Section Starts -->
<section class="banner">
<div class="banner-container">
<h1 class="banner-heading">
It's time to amplify your
<span>online business</span>
</h1>
<p class="banner-text">
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et
dolore magna aliqua. Ut enim ad minim veniam.
</p>
<div class="banner-img">
<img src="img/banner.png" alt="">
</div>
</div>
</section>
<!-- Banner Section Ends -->
<!-- Highlights Start -->
<section class="highlights">
<div class="banner-container">
<div class="high-count">
<p><span>3k+</span> Excepteur sint occaecat cupidatat non proident,
sunt in culpa qui officia deserunt mollit anim id
est laborum.</p>
</div>
<div class="high-text">
<h2>Successfully completed
projects & ideas</h2>
</div>
</div>
</section>
<!-- Highlights Ends -->
<!-- service section starts -->
<section class="services">
<div class="container">
<div class="service-box">
<img src="img/boximg1.jpg" alt="" class="service-box-image">
<h2 class="service-box-heading">Unleash you creativity</h2>
<p class="service-box-text">Duis aute irure dolor in reprehenderit in
voluptate velit esse cillum dolore eu fugiat
nulla pariatur.</p>
</div>
<div class="service-box">
<img src="img/boximg2.jpg" alt="" class="service-box-image">
<h2 class="service-box-heading">Unleash you creativity</h2>
<p class="service-box-text">Duis aute irure dolor in reprehenderit in
voluptate velit esse cillum dolore eu fugiat
nulla pariatur.</p>
</div>
<div class="service-box">
<img src="img/boximg3.jpg" alt="" class="service-box-image">
<h2 class="service-box-heading">Unleash you creativity</h2>
<p class="service-box-text">Duis aute irure dolor in reprehenderit in
voluptate velit esse cillum dolore eu fugiat
nulla pariatur.</p>
</div>
</div>
</section>
<!-- service section ends -->
<!-- footer start -->
<footer>
<div class="footer">
<p class="footer-text">
© Copyright by <a href="#">Md. Ashfaq Sadat</a> . All right Reserved 2023
</p>
</div>
</footer>
<!-- footer end -->
</body>
</html>