-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (88 loc) · 2.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Phone Repair Services - West Edmonton Mall</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
color: #333;
line-height: 1.6;
}
header {
background-color: #007BFF;
color: white;
text-align: center;
padding: 1.5rem 1rem;
}
header h1 {
margin: 0;
}
main {
padding: 1.5rem;
max-width: 800px;
margin: auto;
background: white;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
h2 {
color: #007BFF;
}
p {
margin: 1rem 0;
}
a {
color: #007BFF;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.cta {
margin-top: 1.5rem;
display: flex;
justify-content: center;
}
.cta a {
background-color: #007BFF;
color: white;
padding: 0.8rem 1.5rem;
border-radius: 5px;
text-decoration: none;
font-weight: bold;
}
.cta a:hover {
background-color: #0056b3;
}
footer {
text-align: center;
padding: 1rem;
margin-top: 2rem;
background: #333;
color: white;
}
</style>
</head>
<body>
<header>
<h1>Phone Repair Services at West Edmonton Mall</h1>
</header>
<main>
<h2>Expert Repairs for Your Devices</h2>
<p>Are you facing issues with your smartphone, tablet, or computer? Look no further! Doctor Mobile Profix offers expert phone repair services at West Edmonton Mall. Our team of certified technicians is here to ensure your devices are back in perfect working condition in no time.</p>
<p>At Doctor Mobile Profix, we specialize in repairing a wide range of devices, including iPhones, Android smartphones, tablets, and laptops. From cracked screens and water damage to battery replacements and software troubleshooting, we’ve got you covered.</p>
<p>Visit us today at <a href="https://www.doctormobile.ca/locations/edmonton-phone-repair-ca" target="_blank">Dr. Mobile Edmonton - West Edmonton Mall</a> to experience professional and hassle-free device repair services.</p>
<div class="cta">
<a href="https://www.doctormobile.ca/locations/edmonton-phone-repair-ca" target="_blank">Get Your Device Repaired</a>
</div>
</main>
<footer>
<p>© 2025 Doctor Mobile Profix. All Rights Reserved.</p>
</footer>
</body>
</html>