-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
141 lines (137 loc) · 6.42 KB
/
Copy pathindex.html
File metadata and controls
141 lines (137 loc) · 6.42 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Demoz Web Template</title>
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/fontawesome.min.css">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- Header area start -->
<header class="header-area">
<div class="container">
<div class="row">
<div class="col-xl-6">
<div class="logo">
<a href="index.html">
<img src="assets/images/logo.png" alt="logo">
</a>
</div>
</div>
<div class="col-xl-6">
<div class="menu">
<ul>
<li><a href="index.html">home</a></li>
<li><a href="about.html">about</a></li>
<li><a href="services.html">services</a></li>
<li><a href="gallery.html">gallery</a></li>
<li><a href="contact.html">contact</a></li>
</ul>
</div>
</div>
</div>
</div>
</header>
<!-- Header area end -->
<!-- Banner area start -->
<section class="banner-area">
<div class="container">
<div class="row">
<div class="col-xl-12">
<img src="assets/images/bannar.png" alt="">
</div>
</div>
</div>
</section>
<!-- Banner area end -->
<!-- Services area start -->
<section class="service-area">
<div class="container">
<div class="row">
<div class="col-xl-12 text-center">
<h2>exclusive services</h2>
</div>
</div>
<div class="row">
<div class="col-xl-4 text-center">
<div class="service-item">
<h4>Our Service</h4>
<img src="assets/images/service1.jpg" alt="service item">
<p>
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English
</p>
<a class="btn btn-info bttn" href="services.html">read more</a>
</div>
</div>
<div class="col-xl-4 text-center">
<div class="service-item">
<h4>Our Service</h4>
<img src="assets/images/service1.jpg" alt="service item">
<p>
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English
</p>
<a class="btn btn-info bttn" href="services.html">read more</a>
</div>
</div>
<div class="col-xl-4 text-center">
<div class="service-item">
<h4>Our Service</h4>
<img src="assets/images/service1.jpg" alt="service item">
<p>
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English
</p>
<a class="btn btn-info bttn" href="services.html">read more</a>
</div>
</div>
</div>
</div>
</section>
<!-- Services area end -->
<!-- About area start -->
<section class="about-area">
<div class="container">
<div class="row">
<div class="col-xl-8">
<div class="about-content">
<h4>about us</h4>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English</p>
<a class="btn btn-info bttn" href="about.html">read more</a>
</div>
</div>
<div class="col-xl-4">
<div class="side-bar">
<h4>sidebar menu</h4>
<ul>
<li><a href="index.html"><i class="fas fa-chevron-right"></i> home</a></li>
<li><a href="about.html"><i class="fas fa-chevron-right"></i> about</a></li>
<li><a href="services.html"><i class="fas fa-chevron-right"></i> services</a></li>
<li><a href="gallery.html"><i class="fas fa-chevron-right"></i> gallery</a></li>
<li><a href="contact.html"><i class="fas fa-chevron-right"></i> contact</a></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- About area end -->
<!-- Footer area start -->
<footer>
<div class="container">
<div class="row">
<div class="col-xl-12 text-center">
<p>© 2020 all rights reserved</p>
</div>
</div>
</div>
</footer>
<!-- Footer area end -->
<!-- Js files -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/popper.min.js"></script>
<script src="assets/js/custom.js"></script>
</body>
</html>