├── style.css └── index.html /style.css: -------------------------------------------------------------------------------- 1 | @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap"); 2 | /* Global Styles */ 3 | * { 4 | font-family: "Montserrat", sans-serif; 5 | margin: 0; 6 | padding: 0; 7 | box-sizing: border-box; 8 | } 9 | body { 10 | padding: 1px 10%; 11 | background: #fdcd47; 12 | } 13 | a{ 14 | text-decoration: none; 15 | } 16 | a.gien:link { 17 | color: #1B5380; 18 | } 19 | a.gien:visited { 20 | color: #1B5380; 21 | } 22 | a.gien:hover { 23 | color: #FF5F07; 24 | } 25 | a.gien:active { 26 | color: #1B5380; 27 | } 28 | /* Container Styles */ 29 | .container { 30 | display: flex; 31 | height: 89vh; 32 | } 33 | .main-wrapper{ 34 | flex: 2; 35 | overflow-y: scroll; 36 | .emphasized { font-style: italic; } 37 | } 38 | .side-bar{ 39 | background: #000000; 40 | flex: .1; 41 | padding: 40px; 42 | } 43 | .side-bar ul{ 44 | padding: 0 40px; 45 | list-style: none; 46 | } 47 | .side-bar{ 48 | background: #34347f; 49 | h2 { 50 | color: white; 51 | text-align: center; 52 | font-size: 55px; 53 | } 54 | } 55 | @media only screen and (max-width: 100px) { 56 | .container { 57 | flex-direction: column; 58 | } 59 | .side-bar{ 60 | background: #114; 61 | color: #0E416B !important; 62 | } 63 | .side-bar a{ 64 | color: #0E416B !important; 65 | } 66 | } 67 | /* Navigation Menu Styles */ 68 | nav.nav-menu { 69 | width: 100%; 70 | background-color: #0071dc; 71 | padding: 10px; 72 | 73 | } 74 | /* Add a black background color to the top navigation */ 75 | .topnav { 76 | background-color: #ffffff; 77 | overflow: hidden; 78 | } 79 | /* Style the links inside the navigation bar */ 80 | .topnav a { 81 | float: left; 82 | color: #000000; 83 | text-align: center; 84 | padding: 18px 18px; 85 | text-decoration: none; 86 | font-weight: bold; 87 | font-size: 22px; 88 | } 89 | /* Change the color of links on hover */ 90 | .topnav a:hover { 91 | color: #4985e6; 92 | } 93 | /* Right-aligned section inside the top navigation */ 94 | .topnav-right { 95 | float: right; 96 | font-weight: lighter; 97 | padding-top: 25px; 98 | } 99 | /* Main Content Wrapper Styles */ 100 | .main-wrapper { 101 | background: #dbe2e9; 102 | padding: 40px 50px; 103 | text-align: left; 104 | } 105 | li { 106 | font-size: medium; 107 | text-align: justify; 108 | margin: 2px; 109 | margin-left: 80px; 110 | padding-top: 5px; 111 | padding-right: 80px; 112 | padding-left: 5px; 113 | color: #000000; 114 | } 115 | a { 116 | color: #000000; 117 | } 118 | a:hover{ 119 | color: #fdcd47; 120 | } 121 | section { 122 | margin-bottom: 20px; 123 | } 124 | section.head, 125 | section.youtube-embed { 126 | text-align: center; 127 | } 128 | .button-link { 129 | display: block; 130 | margin: 20px 0 0 50px; 131 | padding: 10px 40px; 132 | width: fit-content; 133 | background: #fdcd47; 134 | border-radius: 5px; 135 | text-decoration: none; 136 | color: rgb(255, 255, 255); 137 | font-weight: bold; 138 | transition: 0.3s transform ease-in-out; 139 | } 140 | .button-link1 { 141 | display: block; 142 | margin: 2px 0 0 0; 143 | padding: 2px 8px; 144 | width: fit-content; 145 | border-radius: 12px; 146 | text-decoration: none; 147 | font-weight: bold; 148 | color: rgb(255, 255, 255); 149 | transition: 0.3s transform ease-in-out; 150 | } 151 | .button-link:hover { 152 | transform: scale(1.05); 153 | background-color: #0570a7; 154 | } 155 | .button-link1:hover { 156 | transform: scale(1.05); 157 | background-color: rgb(230, 230, 231); 158 | border: 1px solid #ffffff; 159 | color: #3f175f; 160 | } 161 | h1 { 162 | font-size: 52px; 163 | padding-right: 40px; 164 | padding-bottom: 50px; 165 | padding-top: 40px; 166 | color: #000000; 167 | } 168 | h2 { 169 | font-size: 30px; 170 | margin-top: 30px; 171 | margin-bottom: 30px; 172 | margin-left: 50px; 173 | color: #000000; 174 | } 175 | h3 { 176 | font-size: 27px; 177 | font-weight: 500; 178 | padding-top: 20px; 179 | padding-bottom: 2px; 180 | padding-right: 15px; 181 | margin-left: 50px; 182 | margin-right: 40px; 183 | color: #000000; 184 | } 185 | h4 { 186 | font-size: 20px; 187 | font-weight: bold; 188 | padding-top: 20px; 189 | padding-bottom: 2px; 190 | margin-left: 50px; 191 | color: #ffffff; 192 | } 193 | ul{ 194 | text-align: justify; 195 | } 196 | .side ul{ 197 | text-align: justify; 198 | margin-bottom: 10px; 199 | line-height: 1.5rem; 200 | font-family: "Cormorant SC", sans-serif; 201 | font-size:30px; 202 | } 203 | ol{ 204 | padding-left: 30px; 205 | text-align: justify; 206 | } 207 | .side ol{ 208 | text-align: justify; 209 | margin-bottom: 10px; 210 | line-height: 1.5rem; 211 | font-family: "Cormorant SC", sans-serif; 212 | font-size:30px; 213 | } 214 | p { 215 | text-align: justify; 216 | margin-bottom: 30px; 217 | line-height: 1.5rem; 218 | padding-top: 10px; 219 | padding-right: 15px; 220 | margin-left: 50px; 221 | margin-right: 40px; 222 | font-size: medium; 223 | font-weight: 500; 224 | color: #000000 225 | } 226 | /* Three image containers (use 25% for four, and 50% for two, etc) */ 227 | .column { 228 | float: left; 229 | width: 25%; 230 | padding: 5px; 231 | } 232 | /* Clear floats after image containers */ 233 | .row::after { 234 | content: ""; 235 | clear: both; 236 | display: table; 237 | } 238 | .center { 239 | margin-left: auto; 240 | margin-right: auto; 241 | } 242 | 243 | /* Clear floats after the columns */ 244 | .row:after { 245 | content: ""; 246 | display: table; 247 | clear: both; 248 | } 249 | div.gallery { 250 | border: 1px solid #ccc; 251 | } 252 | 253 | div.gallery:hover { 254 | border: 1px solid #777; 255 | } 256 | 257 | div.gallery img { 258 | width: 20%; 259 | height: auto; 260 | justify-content: center; 261 | } 262 | 263 | div.desc { 264 | padding: 10px; 265 | text-align: center; 266 | } 267 | 268 | * { 269 | box-sizing: border-box; 270 | } 271 | 272 | .responsive { 273 | padding: 0 6px; 274 | float: left; 275 | width: 25%; 276 | } 277 | 278 | @media only screen and (max-width: 700px) { 279 | .responsive { 280 | width: 49.99999%; 281 | margin: 6px 0; 282 | } 283 | } 284 | 285 | @media only screen and (max-width: 500px) { 286 | .responsive { 287 | width: 100%; 288 | } 289 | } 290 | 291 | .clearfix:after { 292 | content: ""; 293 | display: table; 294 | clear: both; 295 | } 296 | /* Create two equal columns that floats next to each other */ 297 | .column { 298 | float: left; 299 | width: 50%; 300 | padding: 10px; 301 | margin-bottom: 50px; 302 | height: 200px; 303 | } 304 | img { 305 | max-width: 100%; 306 | float: left; 307 | border: 0px solid white; 308 | border-radius: 0px; 309 | margin: 0px; 310 | } 311 | img.gien { 312 | max-width: 100%; 313 | float: left; 314 | border: 0px solid white; 315 | border-radius: 0px; 316 | margin: 0px; 317 | } 318 | .hero-gien { 319 | background-image: linear-gradient(rgba(71, 71, 71, 0.5), rgba(77, 77, 77, 0.5)), url("#"); 320 | height: 300px; 321 | background-position: center; 322 | background-repeat: no-repeat; 323 | background-size: cover; 324 | position: relative; 325 | } 326 | .hero-text { 327 | text-align: center; 328 | position: absolute; 329 | top: 50%; 330 | left: 30%; 331 | transform: translate(-0%, 0%); 332 | color: rgb(12, 9, 9); 333 | font-weight: bold; 334 | font-size: 20px; 335 | } 336 | .two-col { 337 | display: flex; 338 | justify-content: space-between; 339 | gap: 0px; 340 | } 341 | .two-col div { 342 | width: 100%; 343 | } 344 | @media only screen and (max-width: 900px) { 345 | body { 346 | padding: 0; 347 | } 348 | .two-col { 349 | flex-direction: column; 350 | } 351 | .two-col div { 352 | width: 100%; 353 | } 354 | .main-wrapper { 355 | padding: 5%; 356 | } 357 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Boiler Service in Wandsworth – Affordable & Convenient 10 | 11 | 12 | 13 | 26 | 27 |
28 | 29 |
30 |
31 |

Boiler Service in Wandsworth – Affordable & Convenient

32 |
33 |
34 |
35 |

Why Boiler Servicing in Wandsworth is Crucial for Your Safety and Comfort

36 |

Ensuring Safety

37 |

Safety is paramount when it comes to your boiler. To guarantee that your boiler is operating securely, it’s crucial to have a thorough, professional boiler service conducted annually.

38 |

Maintaining Warranty

39 |

To preserve your boiler’s warranty, annual servicing is mandatory. By performing a yearly boiler service, you can make a claim to the manufacturer if a boiler repair or replacement becomes necessary.

40 |

Optimizing Economic Performance

41 |

Professional boiler servicing is vital for ensuring the most cost-effective performance of your boiler. Proper maintenance removes sludge and debris from your boiler, prolonging its lifespan and reducing your gas bills.

42 |

What Our Comprehensive Wandsworth Boiler Service Includes

43 |

Our boiler service is meticulous, and we thoroughly inspect each of the boiler’s functions to keep it in optimal condition. The extensive list of our boiler service procedures includes the following steps:

44 |
    45 |
  1. Clean the filters
  2. 46 |
  3. Conduct a full flue analysis
  4. 47 |
  5. Remove boiler sludge and debris
  6. 48 |
  7. Inspect the circulating pump to ensure it’s running freely
  8. 49 |
  9. Examine the burner chamber and clean it if required
  10. 50 |
  11. Check the flue and terminal for obstructions
  12. 51 |
  13. Top up the system pressure and set the expansion vessel to the correct pressure
  14. 52 |
53 |
54 | Visit Us 56 |
57 |

As an additional service, we can bleed radiators, ensuring all parts of the heating system are in excellent working condition.

58 |

Booking Your Boiler Service in Wandsworth Has Never Been Easier

59 |

Book your boiler service now with our user-friendly online booking system or chat with us during office hours. We’re here to help you keep your boiler in top shape and provide peace of mind.

60 |

Our Commitment: Taking Care of Your Home

61 |

We service hundreds of Wandsworth homes every month, so we understand how important your home is to you. We treat each home with the utmost care and respect, which is why our motto is, “Trust us to take care of your home!”

62 |

Our philosophy is that high-quality service can only be achieved with exceptional people. We employ skilled, committed, and motivated individuals with a passion for their trade. Our numerous positive customer reviews attest to the quality of our work and our dedication to customer satisfaction.

63 |

The Wandsworth Boiler Service Difference

64 |

We go above and beyond for our customers by offering:

65 |
    66 |
  • Authentic customer reviews
  • 67 |
  • Informative blog content
  • 68 |
  • Collaborative efforts with Reviewforest, helping us offset our CO2
  • 69 |
70 |

Don’t hesitate to book your boiler service in Wandsworth today for a professional, affordable, and convenient experience. Let us take care of your home and ensure your boiler’s safety and efficiency.

71 |
72 | Read Post 74 |
75 | 76 |
77 |

Maps

78 | 79 |
80 |
81 |

Things To Do in United Kingdom

82 | 83 |
84 |
85 |

News

86 | 87 |
88 |
89 |

Website

90 | 91 |
92 | 93 |
94 | https://bloglist.github.io/Boiler-Service-in-Wandsworth-Affordable-Convenient/
95 | https://rowlenheatingplumbing.s3.us-east-005.backblazeb2.com/Boiler+Service+in+Wandsworth+%E2%80%93+Affordable+%26+Convenient/index.html
96 | https://boiler-service-in-wandsworth-aff-git-6f779b-bloglist1s-projects.vercel.app/
97 | https://curious-pithivier-7a978f.netlify.app/
98 |
99 | 100 | 115 |
116 | 117 | 118 | --------------------------------------------------------------------------------