-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathService.html
More file actions
79 lines (74 loc) · 3.48 KB
/
Copy pathService.html
File metadata and controls
79 lines (74 loc) · 3.48 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
<!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>Work Order - Services</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body>
<header>
<div class="header-container">
<div class="menu-icon">
<i class="fas fa-bars"></i>
</div>
<h1>Work Order Services</h1>
<div class="search-icon">
<i class="fas fa-search"></i>
</div>
</div>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="Reports.html">Reports</a></li>
<li><a href="Admin.html">Admin</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<section>
<h2>Our Services</h2>
<div class="services-container">
<div class="service">
<i class="fas fa-wrench"></i>
<img src="pictures/Work Order Management.jpg" alt="Service 1">
<h3>Work Order Management</h3>
<p>The systematic approach of processing and completing maintenance work orders in a timely manner in order to minimize asset downtime</p>
</div>
<div class="service">
<i class="fas fa-tools"></i>
<img src="pictures/Public Infrastructure Maintenance.jpg" alt="Service 2">
<h3>Public Infrastructure Maintenance</h3>
<p>Covers spending on preservation of the existing transport network</p>
</div>
<div class="service">
<img src="pictures/Community Development Programs.jpg" alt="Service 3">
<h3>Community Development Programs</h3>
<p> A process where community members are supported by agencies to identify and take collective action on issues which are important to them</p>
</div>
<div class="service">
<img src="pictures/permits.jpg" alt="Service 4">
<h3>Permits and Licensing</h3>
<p>All permits that must be obtained by a local authority regarding the zoning, construction, or operation of the Stations.Licensing is the process of creating a contract that allows another firm to provide capital to the development and launch process, thus taking on financial responsibility</p>
</div>
<div class="service">
<img src="pictures/Waste Management.png" alt="Service 5">
<h3>Waste Management</h3>
<p> Is a conduit at the cross roads of inputs from producers, users and outputs to environmental compartments, with the overall goal to clear the residues and reutilize cleared materials and natural resources.</p>
</div>
<div class="service">
<img src="pictures/Parks and Recreation.jpg" alt="Service 6">
<h3>Parks and Recreation</h3>
<p>The studying areas like community services and park management. This often covers a range of studies including natural resources, wildlife preservation, community activities and leisure.</p>
</div>
</div>
</section>
<footer>
<p>© 2023 Work Order Municipality. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>