08-15-2022 04:35 PM
My HTML appears normal during testing inside a web browser for both mobile and desktop websites and even when revising and previewing it using eBay's own listing tool, but when I actually publish the HTML listing it looks awful on mobile and is not responsive to resizing of the browser on desktop.
I have even tried it on https://www.isdntek.com/ebaytools/ActiveContentSandbox.htm and it looks fine on the mobile views. It does not have any active content, so I am really not sure where I am going wrong.
Here is the code for my HTML website:
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Omnibytes</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<link href="https://outfielder.github.io/test-website/css/style.css" rel="stylesheet">
<!--<link rel="stylesheet" href="https://outfielder.github.io/test-website/css/animate.css">-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
.CSSgal >s:target ~ .bullets >* { background: rgba(200,182,226,0.5); }
.CSSgal >s:target ~ .prevNext >* { visibility: hidden; }
#s1:target ~ .bullets >*:nth-child(1){ background: rgba(200,182,226,1); }
#s1:target ~ .prevNext >*:nth-child(1){ visibility: visible; }
#s1:target ~ .slider{ transform: translateX( 0%); -webkit-transform: translateX( 0%); }
#s2:target ~ .bullets >*:nth-child(2){ background: rgba(200,182,226,1); }
#s2:target ~ .prevNext >*:nth-child(2){ visibility: visible; }
#s2:target ~ .slider{ transform: translateX( -100%); -webkit-transform: translateX( -100%); }
#s3:target ~ .bullets >*:nth-child(3){ background: rgba(200,182,226,1); }
#s3:target ~ .prevNext >*:nth-child(3){ visibility: visible; }
#s3:target ~ .slider{ transform: translateX( -200%); -webkit-transform: translateX( -200%); }
#s4:target ~ .bullets >*:nth-child(4){ background: rgba(200,182,226,1); }
#s4:target ~ .prevNext >*:nth-child(4){ visibility: visible; }
#s4:target ~ .slider{ transform: translateX( -300%); -webkit-transform: translateX( -300%); }
#s5:target ~ .bullets >*:nth-child(5){ background: rgba(200,182,226,1); }
#s5:target ~ .prevNext >*:nth-child(5){ visibility: visible; }
#s5:target ~ .slider{ transform: translateX( -400%); -webkit-transform: translateX( -400%); }
#s6:target ~ .bullets >*:nth-child(6){ background: rgba(200,182,226,1); }
#s6:target ~ .prevNext >*:nth-child(6){ visibility: visible; }
#s6:target ~ .slider{ transform: translateX( -500%); -webkit-transform: translateX( -500%); }
#s7:target ~ .bullets >*:nth-child(7){ background: rgba(200,182,226,1); }
#s7:target ~ .prevNext >*:nth-child(7){ visibility: visible; }
#s7:target ~ .slider{ transform: translateX( -600%); -webkit-transform: translateX( -600%); }
#s8:target ~ .bullets >*:nth-child(8){ background: rgba(200,182,226,1); }
#s8:target ~ .prevNext >*:nth-child(8){ visibility: visible; }
#s8:target ~ .slider{ transform: translateX( -700%); -webkit-transform: translateX( -700%); }
#s9:target ~ .bullets >*:nth-child(9){ background: rgba(200,182,226,1); }
#s9:target ~ .prevNext >*:nth-child(9){ visibility: visible; }
#s9:target ~ .slider{ transform: translateX( -800%); -webkit-transform: translateX( -800%); }
#s10:target ~ .bullets >*:nth-child(10){ background: rgba(200,182,226,1); }
#s10:target ~ .prevNext >*:nth-child(10){ visibility: visible; }
#s10:target ~ .slider{ transform: translateX( -900%); -webkit-transform: translateX( -900%); }
</style>
</head>
<body>
<header id="header">
<nav class="navbar navbar-default">
<div class="container">
<div class="row">
<div class="navbar-header width-35">
<a class="navbar-brand scroll-link" href="/" data-id="home"><img alt="Logo" src="https://raw.githubusercontent.com/techxz/test-site/main/logo.png" class="logo" /></a>
<ul class="nav navbar-nav">
<li><a href="https://www.ebay.co.uk/sch/i.html?_dmd=2&_dkr=1&iconV2Request=true&_ssn=a1_tech_deals&store_name=a1technology&_oac=1"> eBay Store </a></li>
<li class="dropdown">
<a href="#" class="dropbtn">Product Categories<i class="fa fa-chevron-down" aria-hidden="true"></i></a>
<div class="dropdown-content">
<a href="https://www.ebay.co.uk/sch/58058/i.html?_dmd=2&_dkr=1&iconV2Request=true&_ssn=a1_tech_deals&store_name=a1technology&_oac=1">Computers, Tablets & Network Hardware</a>
<a href="https://www.ebay.co.uk/sch/1249/i.html?_dmd=2&_dkr=1&iconV2Request=true&_ssn=a1_tech_deals&store_name=a1technology&_oac=1">Video Games & Consoles</a>
<a href="https://www.ebay.co.uk/sch/293/i.html?_dmd=2&_dkr=1&iconV2Request=true&_ssn=a1_tech_deals&store_name=a1technology&_oac=1">Sound & Vision</a>
<a href="https://www.ebay.co.uk/sch/15032/i.html?_dmd=2&_dkr=1&iconV2Request=true&_ssn=a1_tech_deals&store_name=a1technology&_oac=1">Mobile Phones, Smart Watches, Accessories & Communication</a>
<a href="https://www.ebay.co.uk/sch/11700/i.html?_dmd=2&_dkr=1&iconV2Request=true&_ssn=a1_tech_deals&store_name=a1technology&_oac=1">Home, Furniture & DIY</a>
</div>
</li>
<li><a href="https://www.ebay.co.uk/str/a1technology#tab2"> Buyer Feedback </a></li>
</ul>
</div>
</div>
</div>
</nav>
<div class="container index_1">
<div class="row">
<div class="col-lg-12 col-md-12 col-xs-12 col-sm-12 text-center pdding-header">
<h5 style=" animation-duration: 2s;"/> OMNIBYTES</h5>
<div class="main_header wow slideInRight" style=" animation-duration: 2s;">
<h2>Welcome to the <br> <i><b>A1 Tech Deals</b></i> eBay store!</h2>
<p>The best place for high quality consumer electronics <br/>sold at competitive prices.</p>
</div>
</div>
</div>
</div>
<div class="shape_container">
<div class="shapes">
<div class="shape1"> <img alt="Shape" src="https://raw.githubusercontent.com/techxz/test-site-2/main/left.png"> </div>
<div class="shape2"> <img alt="Shape" src="https://raw.githubusercontent.com/techxz/test-site-2/main/right.png"> </div>
<div class="shape3"> <img alt="Shape" src="https://raw.githubusercontent.com/techxz/test-site-2/main/bottom.png"> </div>
</div>
</div>
</header>
<img src="https://raw.githubusercontent.com/techxz/test-site-2/main/omnibg.png" class="wow slideInRight width100" style=" animation-duration: 2s;"/>
<section id="features" class="bout_p1" style="background-image:url(https://raw.githubusercontent.com/techxz/test-site-2/main/omnibytes_bg.svg)">
<div class="container">
<div class="row whites wow slideInRight" style=" animation-duration: 2s;">
<div class="col-lg-3 col-md-3 col-sm-12 col-xs-12 wow slideInLeft mobile_no" style=" animation-duration: 2s;">
<div class="side_bar_img">
<ul>
<li>
<a href="https://www.ebay.co.uk/itm/155120727686">
<img src="https://i.ebayimg.com/images/g/ay0AAOSw6bti-sU9/s-l1600.jpg"/>
<h3>PS5 Digital Horizon Bundle</h3>
<h4>Brand New</h4>
</a>
</li>
<li>
<a href="https://www.ebay.co.uk/itm/154626869359">
<img src="https://i.ebayimg.com/images/g/vskAAOSw9cti9v0K/s-l1600.jpg"/>
<h3>PS5 Bluray Disc Edition</h3>
<h4>Brand New</h4>
</a>
</li>
<li>
<a href="https://www.ebay.co.uk/itm/154733637462">
<img src="https://i.ebayimg.com/images/g/thgAAOSwHYBiuECZ/s-l1600.jpg"/>
<h3>PS5 Bluray Disc Edition</h3>
<h4>Refurb - Excellent</h4>
</a>
</li>
<li>
<a href="https://www.ebay.co.uk/itm/154883719764">
<img src="https://i.ebayimg.com/images/g/RtEAAOSwKcBi9v0J/s-l1600.jpg"/>
<h3>PS5 Digital Edition</h3>
<h4>Refurb - Excellent</h4>
</a>
</li>
<li>
<a href="https://www.ebay.co.uk/itm/155120736543">
<img src="https://i.ebayimg.com/images/g/wPkAAOSwcOdi-sjY/s-l1600.jpg"/>
<h3>PS5 Disc Horizon Bundle</h3>
<h4>Brand New</h4>
</a>
</li>
</ul>
</div>
</div>
<div class="col-lg-9 col-md-9 col-sm-12 col-xs-12 wow slideInLeft" style=" animation-duration: 2s;">
<div class="right-sides">
<div class="section_title text-left wow slideInLeft" style=" animation-duration: 2s;">
<!-- <h3> HP Desktop TCSN021001 </h3> -->
<div class="CSSgal">
<!-- Don't wrap targets in parent -->
<s id="s1"></s>
<s id="s2"></s>
<s id="s3"></s>
<s id="s4"></s>
<s id="s5"></s>
<s id="s6"></s>
<s id="s7"></s>
<s id="s8"></s>
<s id="s9"></s>
<s id="s10"></s>
<br>
<div class="slider">
<div><img src="https://i.ebayimg.com/images/g/Vz4AAOSwjt1i9v0J/s-l1600.jpg"/></div>
<div><img src="https://i.ebayimg.com/images/g/JcIAAOSw2FNi9v0I/s-l1600.jpg"/></div>
<div><img src="https://i.ebayimg.com/images/g/qy4AAOSw-GNi9v0I/s-l1600.jpg"/></div>
<div><img src="https://i.ebayimg.com/images/g/H8gAAOSwJvVi9v0I/s-l1600.jpg"/></div>
<div><img src="https://i.ebayimg.com/images/g/bf0AAOSwclli9v0I/s-l1600.jpg"/></div>
<div><img src="https://i.ebayimg.com/images/g/mRkAAOSwDd9i9v0J/s-l1600.jpg"/></div>
<div><img src="https://i.ebayimg.com/images/g/kUUAAOSwKqVi9v0J/s-l1600.jpg"/></div>
<div><img src="https://i.ebayimg.com/images/g/GkEAAOSwIUFi9v0J/s-l1600.jpg"/></div>
<div><img src="https://i.ebayimg.com/images/g/0b4AAOSw8W5i9v0J/s-l1600.jpg"/></div>
<div><img src="https://i.ebayimg.com/images/g/jGUAAOSwR4Vi9v0J/s-l1600.jpg"/></div>
</div>
<div class="prevNext">
<div><a href="#s10"> <i class="fa fa-arrow-left" aria-hidden="true"></i> </a><a href="#s2"> <i class="fa fa-arrow-right" aria-hidden="true"></i> </a></div>
<div><a href="#s1"> <i class="fa fa-arrow-left" aria-hidden="true"></i> </a><a href="#s3"> <i class="fa fa-arrow-right" aria-hidden="true"></i> </a></div>
<div><a href="#s2"> <i class="fa fa-arrow-left" aria-hidden="true"></i> </a><a href="#s4"> <i class="fa fa-arrow-right" aria-hidden="true"></i> </a></div>
<div><a href="#s3"> <i class="fa fa-arrow-left" aria-hidden="true"></i> </a><a href="#s5"> <i class="fa fa-arrow-right" aria-hidden="true"></i> </a></div>
<div><a href="#s4"> <i class="fa fa-arrow-left" aria-hidden="true"></i> </a><a href="#s6"> <i class="fa fa-arrow-right" aria-hidden="true"></i> </a></div>
<div><a href="#s5"> <i class="fa fa-arrow-left" aria-hidden="true"></i> </a><a href="#s7"> <i class="fa fa-arrow-right" aria-hidden="true"></i> </a></div>
<div><a href="#s6"> <i class="fa fa-arrow-left" aria-hidden="true"></i> </a><a href="#s8"> <i class="fa fa-arrow-right" aria-hidden="true"></i> </a></div>
<div><a href="#s7"> <i class="fa fa-arrow-left" aria-hidden="true"></i> </a><a href="#s9"> <i class="fa fa-arrow-right" aria-hidden="true"></i> </a></div>
<div><a href="#s8"> <i class="fa fa-arrow-left" aria-hidden="true"></i> </a><a href="#s10"> <i class="fa fa-arrow-right" aria-hidden="true"></i> </a></div>
<div><a href="#s9"> <i class="fa fa-arrow-left" aria-hidden="true"></i> </a><a href="#s1"> <i class="fa fa-arrow-right" aria-hidden="true"></i> </a></div>
</div>
<br>
<br>
<br>
<div class="bullets">
<a href="#s1"></a>
<a href="#s2"></a>
<a href="#s3"></a>
<a href="#s4"></a>
<a href="#s5"></a>
<a href="#s6"></a>
<a href="#s7"></a>
<a href="#s8"></a>
<a href="#s9"></a>
<a href="#s10"></a>
</div>
</div>
</div>
<div class="flex image_three">
<div class="container index_1">
<div class="row">
<div class="col-lg-12 col-md-12 col-xs-12 col-sm-12 text-center">
<div class="main_header wow slideInRight" style=" animation-duration: 2s;">
<button class="buttons"> <a href="https://pay.ebay.co.uk/rxo?action=create&rypsvc=true&pagename=ryp&item=155110595088&TransactionId=-1">Buy Now </a></button>
</div>
</div>
</div>
</div>
</div>
<div class="descriptions">
<h3>SONY WH-1000XM4 Wireless Bluetooth Headphones - Blue</h3>
<p><em><span style="text-decoration: underline;">"These headphones are in BRAND NEW and UNUSED condition. The box has been unsealed for inspection and verification purposes, but the box contents have not been used..."</span></em></p>
<p><strong>SPECIFICATIONS</strong><br />Perfect for: Commuting & travel<br />Design: Over-ear<br />Features: Volume control<br />Features: Quick charging<br />Features: Quick attention mode<br />Features: Playback / functions control<br />Features: Passive noise-isolating<br />Features: Mic<br />Features: Foldable<br />Features: All-day battery life (24 hours or more)<br />Features: Active noise-cancelling<br />Compatible voice assistant: Siri<br />Compatible voice assistant: Google Assistant<br />Compatible voice assistant: Amazon Alexa<br />Colour: Blue<br />Type: Noise cancelling headphones<br />Type: Wireless and bluetooth headphones<br />Type: Over–ear headphones</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 wow slideInLeft" style=" animation-duration: 2s;">
<div class="rt-container">
<div class="col-rt-12">
<div class="tab-wrap wow slideInRight" style=" animation-duration: 2s;">
<input type="radio" id="tab1" name="tabGroup1" class="tab" checked>
<label for="tab1">Returns</label>
<input type="radio" id="tab2" name="tabGroup1" class="tab">
<label for="tab2">Shipping</label>
<input type="radio" id="tab3" name="tabGroup1" class="tab">
<label for="tab3">Invoice</label>
<input type="radio" id="tab4" name="tabGroup1" class="tab">
<label for="tab4">Payment</label>
<div class="tab__content">
<h3>Returns Policy</h3>
<p>We hope that you will be satisfied with your order, but if you are not completely satifisfied then you can return your items within 30 days of receiving it for a full refund. We offer a no-quibble easy returns process and accept returns for any reason - even if you have simply changed your mind.
Please note, however, that to receive a full refund items returned must be in the same condition that they arrived in complete with any accessories and free gifts offered with it. If this is not the case, then we reserve a right to deduct part of the refund amount.</p>
</div>
<div class="tab__content">
<h3>Dispatch time and couriers</h3>
<p>We typically dispatch all items within 1 working day and use either Royal Mail or UPS 1-day shipping. We do not ship on weekends, but if you would like for an item to arrive at the weekend then please send us a message and we will do our best to accomodate your request for you. Please note that extra charges may apply for weekend delivery.</p>
</div>
<div class="tab__content">
<h3>Invoice Section</h3>
<p>If you would like an invoice for your order then please let us know via an <a href="https://www.ebay.co.uk/cnt/intermediatedFAQ?requested=a1_tech_deals">eBay message </a>once you have placed your order.</p>
</div>
<div class="tab__content">
<h3>Payment methods</h3>
<p>Payment can be made by all credit and debit cards including American Express as well as Apple Pay, Google Pay & Paypal.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--<section id="testimonials">-->
<!-- <div class="container">-->
<!-- <div class="row">-->
<!-- <div class="col-lg-12 col-sm-12 col-md-12 col-xs-12" data-aos="fade-up" data-aos-delay="200">-->
<!-- <div class="section-title exp1">-->
<!-- <h2>Buyer Feedback</h2>-->
<!-- </div>-->
<!-- <div class="exper d-flex">-->
<!-- <div class="slider">-->
<!-- <div class="slide-track">-->
<!-- <div class="slide">-->
<!-- <div class="test">-->
<!-- <div class="testimonial_lefts flexx">-->
<!-- <div class="test_logo"> <img src="https://raw.githubusercontent.com/techxz/test-site-2/main/positive_feedback.png"/></div>-->
<!-- <div class="test_info">-->
<!-- <h4>m***d (97⭐)</h4>-->
<!-- <p>Lenovo Legion 5</p>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="testimonial_rights">-->
<!-- <p>Machine was exactly as specified. Warranty is better then expected and notebook also arrived earlier then expected. Overall great system and great eBayer. Highly recommend this seller thanks for the quick painless prompt service. Much appreciated.</p>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="slide">-->
<!-- <div class="test">-->
<!-- <div class="testimonial_lefts flexx">-->
<!-- <div class="test_logo"> <img src="https://raw.githubusercontent.com/techxz/test-site-2/main/positive_feedback.png"/></div>-->
<!-- <div class="test_info">-->
<!-- <h4> t***w (362⭐)</h4>-->
<!-- <p>Sony PS5 Disc</p>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="testimonial_rights">-->
<!-- <p>Very hard to get hold of these but a1_tech_deals were excellent. Advertised UPS 24hr but used UPS Standard. However the console arrived exactly when they said it would so no complaints at all. Described as "New but opened", but I saw no evidence of it being opened. Looked new and unopened to me. Thanks you.</p>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="slide">-->
<!-- <div class="test">-->
<!-- <div class="testimonial_lefts flexx">-->
<!-- <div class="test_logo"> <img src="https://raw.githubusercontent.com/techxz/test-site-2/main/positive_feedback.png"/></div>-->
<!-- <div class="test_info">-->
<!-- <h4> i***l (1011⭐)</h4>-->
<!-- <p>Xbox Series X</p>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="testimonial_rights">-->
<!-- <p>Was very hesitant spending such a large amount of money but needn’t if worried very speedy delivery. Thank you so much x-->
<!-- </p>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="slide">-->
<!-- <div class="test">-->
<!-- <div class="testimonial_lefts flexx">-->
<!-- <div class="test_logo"> <img src="https://raw.githubusercontent.com/techxz/test-site-2/main/positive_feedback.png"/></div>-->
<!-- <div class="test_info">-->
<!-- <h4>o***c (115⭐)</h4>-->
<!-- <p>Xbox Series X</p>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="testimonial_rights">-->
<!-- <p>Was a bit nervous purchasing such an expensive electronic item, needn't have worried, was exactly as advertised, new and sealed. Highly recommend.</p>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="slide">-->
<!-- <div class="test">-->
<!-- <div class="testimonial_lefts flexx">-->
<!-- <div class="test_logo"> <img src="https://raw.githubusercontent.com/techxz/test-site-2/main/positive_feedback.png"/></div>-->
<!-- <div class="test_info">-->
<!-- <h4>r***1 (1414⭐)</h4>-->
<!-- <p>Intel i7-9700k</p>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="testimonial_rights">-->
<!-- <p>Received with huge thanks A++++, coms were massively helpful as he took time out to make sure everything was taken care of before posting, couldn't have asked for a better seller. Highly recommended.! Will be buying from again :)</p>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="slide">-->
<!-- <div class="test">-->
<!-- <div class="testimonial_lefts flexx">-->
<!-- <div class="test_logo"> <img src="https://raw.githubusercontent.com/techxz/test-site-2/main/positive_feedback.png"/></div>-->
<!-- <div class="test_info">-->
<!-- <h4>s***0 (1529⭐)</h4>-->
<!-- <p>ThinkPad X270</p>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="testimonial_rights">-->
<!-- <p>Exactly as described - arrived very promptly. One of very few remaining honest eBay sellers! Would happily buy from again.-->
<!-- </p>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="slide">-->
<!-- <div class="test">-->
<!-- <div class="testimonial_lefts flexx">-->
<!-- <div class="test_logo"> <img src="https://raw.githubusercontent.com/techxz/test-site-2/main/positive_feedback.png"/></div>-->
<!-- <div class="test_info">-->
<!-- <h4>n***l (482⭐)</h4>-->
<!-- <p>Sony PS5 Digital</p>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="testimonial_rights">-->
<!-- <p>Was worried about spending so much on eBay but I would recommend this seller. The item is spot on. Works well and was well packed. A++++++ seller-->
<!-- </p>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="slide">-->
<!-- <div class="test">-->
<!-- <div class="testimonial_lefts flexx">-->
<!-- <div class="test_logo"> <img src="https://raw.githubusercontent.com/techxz/test-site-2/main/positive_feedback.png"/></div>-->
<!-- <div class="test_info">-->
<!-- <h4>u***2 (85⭐)</h4>-->
<!-- <p>Xbox Series X</p>-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="testimonial_rights">-->
<!-- <p>I was a bit worried at first due to all the horror stories buying these from some seller's but happily the reviews and feedback on this seller were fantastic. Item is EXACTLY as described, brand new sealed, fully working and no problems so very very very happy to finally be able to get my hands on the Xbox Series X given how hard its been to find once since launch. I would HIGHLY recommend this seller and would buy from them again. Over the moon! Great price too! Thank you :-)-->
<!-- </p>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!-- </div>-->
<!--</section>-->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="footer_content wow slideInRight" style=" animation-duration: 2s;">
<img src="https://raw.githubusercontent.com/techxz/test-site/main/logo.png"/>
<p class="copyright"> Copyright © 2022, Omnibytes LTD
<br><i class="fa fa-map-marker" aria-hidden="true"></i> 71-75 Shelton Street
<br>London
WC2H 9JQ
VAT number: GB388827039
</p>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>