-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
150 lines (149 loc) · 4.93 KB
/
services.html
File metadata and controls
150 lines (149 loc) · 4.93 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
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Locksmith | Services</title>
<link rel="icon" type="image/x-icon" href="images/favicon.png" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="services.css" />
<link rel="stylesheet" href="font.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
/>
</head>
<body>
<div class="contact-row">
<div class="container">
<div class="content">
<h3 class="time">
<i class="fa-regular fa-clock"></i>24-hour service
</h3>
<h3 class="phone-number">
<i class="fa-solid fa-phone"></i>1-234-567-890
</h3>
</div>
</div>
</div>
<nav class="navbar">
<div class="icon phone-btn">
<i class="fa-solid fa-phone"></i>
</div>
<div class="logo-container">
<img class="logo" src="images/logo.png" alt="logo" />
</div>
<ul id="sidemenu" class="menu-list">
<div class="icon cancel-btn">
<i class="fa-solid fa-xmark"></i>
</div>
<li><a href="index.html">Home</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="about.html">About</a></li>
<li><a href="articles.html">Articles</a></li>
<li><a href="contact.html">Contact</a></li>
<button>CALL NOW</button>
</ul>
<div class="icon menu-btn">
<i class="fa-solid fa-bars"></i>
</div>
</nav>
<div id="serviceHeader">
<div class="container">
<div class="content">
<div class="image-container">
<div class="overlay">
<h1>Quality That You Can Trust!</h1>
<p>
We provide emergency and non-emergency services throughout the
greater metropolitan area. Our locksmiths are on duty 24 hours a
day, 7 days a week, so you are never left out in the cold. We’re
always on hand to help you out.
</p>
</div>
</div>
</div>
</div>
</div>
<div id="serviceDeals">
<div class="container">
<div class="content">
<div class="card">
<h1>House Locks</h1>
<p>
Protect your family and your belongings with high-quality house
locks that keep you and your loved ones safe.
</p>
</div>
<div class="card">
<h1>Key Cutting</h1>
<p>
Our huge selection of qualities covers everything from foreign and
rare locks to bolts, door chains and internal doors.
</p>
</div>
<div class="card">
<h1>Auto Locksmith</h1>
<p>
Forgot your keys in the car? You’re not alone. Call us and within
30 minutes, we’ll send a technician to help you get back in.
</p>
</div>
<div class="card">
<h1>Burglary Repairs</h1>
<p>
We’ll move in immediately after a robbery happens, fixing
structural damages and ensuring they don’t happen again.
</p>
</div>
<div class="card">
<h1>Security Systems</h1>
<p>
We offer the most cutting edge security system solutions to ensure
the utmost safety for your home and property.
</p>
</div>
<div class="card">
<h1>Shed & Garage</h1>
<p>
Choose the level of protection you want for your storage areas so
you can relax knowing the contents are safe.
</p>
</div>
</div>
</div>
</div>
<footer>
<div class="container">
<div class="content">
<div class="logo-container">
<img src="images/logo.png" alt="logo" />
<div class="social-icons">
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-google-plus-g"></i>
<i class="fa-brands fa-x-twitter"></i>
<i class="fa-brands fa-instagram"></i>
</div>
</div>
<button>CALL NOW</button>
<div class="info-box">
<i class="fa-solid fa-location-dot"></i>
<h3>AREA OF SERVICE</h3>
<p>City, State and Zip</p>
</div>
<div class="info-box">
<i class="fa-solid fa-phone"></i>
<h3>PHONE</h3>
<p>1-234-567-890</p>
</div>
<div class="info-box">
<i class="fa-regular fa-envelope"></i>
<h3>EMAIL</h3>
<p>example@gmail.com</p>
</div>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>