-
Notifications
You must be signed in to change notification settings - Fork 1
/
services.html
88 lines (79 loc) · 1.82 KB
/
services.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link href="sheet.css" type="text/css" rel="stylesheet">
<title>Modern Electricals</title>
<style>
.service{
font-family:algerian;
font-size:50px;
text-align:center;
position:absolute;
top:110px;
left:500px;
color:teal;
}
.ac{
position:absolute;
left:360px;
top:200px;
}
.fan{
position:absolute;
top:200px;
left:50px;
}
.fault{
position:absolute;
top:200px;
left:650px;
}
.full{
position:absolute;
left:1000px;
top:200px;
}
.foot{
position:absolute;
bottom:30px;
left:200px;
font-size:30px;
font-family:algerian;
color:teal;
}
</style>
</head>
<body>
<header>
<h1 style="font-family:algerian">Modern Electricals</h1>
</header>
<div>
<ul>
<li><a href="login.html">User Login<a/></li>
<li><a href="table.html">Our Branches<a/></li>
<li><a href="form.html">Form<a/></li>
<li><a href="index.html" >Home page<a/></li>
<li><a href="contact.html" >Contact Us<a/></li>
</ul>
</div>
<h2 class="service">Our Services</h2>
<figure class="fan">
<img src="images/fan.jpeg" height="200px" width="200px" alt="fan repair">
<figcaption style="font-size:30px;font-family:algerian;">Fan Repair</figcaption>
</figure>
<figure class="ac">
<img src="images/ac.jpeg" height="200px" width="200px" alt="ac repair">
<figcaption style="font-size:30px;font-family:algerian;">A.C Repair</figcaption>
</figure>
<figure class="fault">
<img src="images/fault.jpeg" height="200px" width="200px" alt="fault">
<figcaption style="font-size:30px;font-family:algerian;">circuit fault</figcaption>
</figure>
<figure class="full">
<img src="images/full.jpeg" height="200px" width="200px" alt="full">
<figcaption style="font-size:30px;font-family:algerian;">Full House Wiring fitting</figcaption>
</figure>
<h3 class="foot">Any electrical fault and repair ......</h3>
</body>
</html>