www.shedstore.co.uk
Open in
urlscan Pro
2606:4700:20::ac43:4830
Public Scan
Submitted URL: http://shedstore.co.uk/
Effective URL: https://www.shedstore.co.uk/
Submission Tags: tranco_l324
Submission: On May 15 via api from DE — Scanned from DE
Effective URL: https://www.shedstore.co.uk/
Submission Tags: tranco_l324
Submission: On May 15 via api from DE — Scanned from DE
Form analysis
5 forms found in the DOMGET https://www.shedstore.co.uk/search/
<form class="form minisearch flex" id="search_mini_form" action="https://www.shedstore.co.uk/search/" method="get">
<label class="hidden" for="search" data-role="minisearch-label">
<span>Search</span>
</label>
<input id="search" x-ref="searchInput" type="search" name="q" value="" placeholder="Search products" maxlength="128" class="w-full p-2 text-lg leading-normal transition appearance-none text-grey-800 bg-extend-search-primary
focus:outline-none focus:border-transparent lg:text-xl">
<button type="submit" title="Search" class="action search inline-block no-underline hover:text-black bg-extend-search-tertiary
px-2 rounded-r-sm" aria-label="Search">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 0 24 24" width="24px" fill="#fff">
<path d="M0 0h24v24H0z" fill="none"></path>
<path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5
3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49
19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path>
</svg>
</button>
</form>
GET https://www.shedstore.co.uk/search/
<form class="form minisearch" id="search_mini_form" action="https://www.shedstore.co.uk/search/" method="get" role="search">
<div class="relative">
<label class="sr-only" for="search"> Search entire store here... </label>
<input id="search" x-on:input.debounce="getSearchResults()" x-ref="searchInput" type="search" class="w-full p-2 text-lg leading-normal transition appearance-none text-grey-800
focus:outline-none focus:border-transparent lg:text-xl" autocapitalize="off" autocomplete="off" autocorrect="off" name="q" value="" placeholder="Search entire store here..." maxlength="128" @search-open.window.debounce.10="
$el.focus();
$el.select();
">
</div>
<div id="search_autocomplete" class="search-autocomplete relative w-full" x-show="show" style="display:none;">
<div class="absolute bg-white border border-solid border-black z-50 w-full grid grid-cols-1 md:grid-cols-3 lg:grid-cols-4">
<template x-for="searchResultByType in Object.values(searchResultsByType)">
<div class="">
<template x-if="searchResultByType.hasOwnProperty(0) && templates[searchResultByType[0].type].title && templates[searchResultByType[0].type].titleRenderer === undefined">
<div class="font-bold pt-2 pl-2 text-center" x-text="templates[searchResultByType[0].type].title"></div>
</template>
<template x-if="searchResultByType.hasOwnProperty(0) && templates[searchResultByType[0].type].titleRenderer !== undefined">
<div class="font-bold pt-2 pl-2 text-center" x-text="window[templates[searchResultByType[0].type].titleRenderer](searchResultByType)"></div>
</template>
<template x-for="searchResult in searchResultByType">
<div class="hover:bg-gray-100">
<template x-if="searchResult.type == 'term'">
<a class="w-full block p-2" x-bind:href="'https://www.shedstore.co.uk/search/?q=' + searchResult.title" :title="searchResult.title">
<span class="text-sm" x-text="searchResult.title"></span>
<span class="text-sm" x-text="'(' + searchResult.num_results + ')'"></span>
</a>
</template>
<template x-if="searchResult.type == 'product'">
<a class="w-full block" :href="searchResult.url" :title="searchResult.title">
<div class="grid grid-cols-4 gap-4 p-3">
<div>
<img :src="searchResult.image" class="inline-block">
</div>
<div class="col-span-3">
<span class="text-sm" x-text="searchResult.title"></span>
<span class="text-sm font-bold" x-html="searchResult.price"></span>
</div>
</div>
</a>
</template>
<template x-if="searchResult.type == 'category'">
<a class="w-full block p-2" :href="searchResult.url" :title="searchResult.title">
<span class="text-sm italic block text-gray-500" x-text="searchResult.breadcrumb.join(' > ').concat(' > ')"></span>
<span class="text-sm" x-text="searchResult.title"></span>
</a>
</template>
<template x-if="searchResult.type == 'product_attribute'">
<a class="w-full block p-2" :href="searchResult.url" :title="searchResult.title">
<span class="text-sm" x-text="searchResult.title"></span>
<span class="text-xs uppercase text-gray-500" x-text="searchResult.attribute_label" style="vertical-align: super;"></span>
</a>
</template>
<script>
function renderEsAutocompleteTitleAttribute(data) {
data = data.filter(function(item) {
return item.type === 'product_attribute';
}).map(function(item) {
return item['attribute_label']
}).reduce(function(prev, item) {
if (item in prev) {
prev[item]++;
} else {
prev[item] = 1;
}
return prev;
}, {});
data = Object.entries(data).sort(function(item1, item2) {
return item2[1] - item1[1]
}).map(function(item) {
return item[0]
});
if (data.length > 2) {
data = data.slice(0, 2);
data.push('...');
}
return data.join(', ');
}
</script>
<template x-if="searchResult.type == 'cms_page'">
<a class="w-full block p-2" :href="searchResult.url" :title="searchResult.title">
<span class="text-sm" x-text="searchResult.title"></span>
</a>
</template>
</div>
</template>
</div>
</template>
</div>
</div>
</form>
POST
<form class="form form-login" method="post" @submit.prevent="submitForm();" id="login-form">
<div class="fieldset login">
<div class="field email required">
<label class="label" for="form-login-username" form="login-form">
<span>Email Address</span>
</label>
<div class="control">
<input name="username" id="form-login-username" x-ref="customer-email" @change="errors = 0" type="email" required="" autocomplete="off" class="form-input input-text">
</div>
</div>
<div class="field password required">
<label for="form-login-password" class="label" form="login-form">
<span>Password</span>
</label>
<div class="control">
<input name="password" id="form-login-password" type="password" class="form-input input-text" required="" x-ref="customer-password" autocomplete="off" @change="errors = 0">
</div>
</div>
<input name="context" type="hidden" value="checkout">
<div class="actions-toolbar flex justify-between pt-6 pb-2 items-center">
<button type="submit" class="inline-flex btn btn-primary disabled:opacity-75"> Sign In </button>
<a href="https://www.shedstore.co.uk/customer/account/forgotpassword/">
Forgot Your Password? </a>
</div>
</div>
</form>
POST https://www.shedstore.co.uk/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2hlZHN0b3JlLmNvLnVrLw~~/?___store=shedstore
<form x-data="nostoRecobuy()" action="https://www.shedstore.co.uk/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2hlZHN0b3JlLmNvLnVrLw~~/?___store=shedstore" method="post" id="nosto_addtocart_form">
<input name="form_key" type="hidden" value="ga4NQCuzKztmyw6k">
</form>
Name: mc-embedded-subscribe-form — POST //shedstore.us6.list-manage.com/subscribe?u=74346b99f353e562ea5b3e7d7&id=320a636248
<form id="mc-embedded-subscribe-form" class="validate m-3" action="//shedstore.us6.list-manage.com/subscribe?u=74346b99f353e562ea5b3e7d7&id=320a636248" method="post" name="mc-embedded-subscribe-form" novalidate="" target="_blank">
<div id="mc_embed_signup_scroll" align="center">
<div style="position: absolute; left: -5000px;"><input tabindex="-1" name="b_74346b99f353e562ea5b3e7d7_f6e5f626b0" type="text" value="" align="center"></div>
<div class="clear" align="center"><input id="mc-embedded-subscribe" class="btn text-gray-950 bg-green-150 rounded-full py-2 px-6 font-normal" name="subscribe" type="submit" value="Sign up" align="center"></div>
</div>
</form>
Text Content
JavaScript seems to be disabled in your browser. For the best experience on our site, be sure to turn on Javascript in your browser. This website uses necessary cookies to make our site work. We’d also like to set optional analytics cookies to help us improve our website by collecting and reporting information on how you use it. To read more about how we use cookies, see our Cookies information here Analytics cookies We won’t set optional cookies unless you enable them. Using this tool will set a cookie on your device to remember your preferences. Allow Cookies This website uses necessary cookies to make our site work. We’d also like to set optional analytics cookies to help us improve our website by collecting and reporting information on how you use it. To read more about how we use cookies, see our Cookies information here Analytics cookies We won’t set optional cookies unless you enable them. Using this tool will set a cookie on your device to remember your preferences. Allow Cookies Extra 10% off ALL Wooden Garden Buildings over £699 Ending in -1 days -1 hours -1 min -4 sec Simply Use Voucher Code WOOD10 at Checkout Save an Extra 5% off ALL Forest Orders over £599 Ending in 5 days 12 hours 47 min 3 sec Simply enter Voucher Code OFFER5 at Checkout Skip to Content * Blog * Delivery * Returns * My Account Sign In Create an Account Call 0333 003 0518 Click to see our opening times Search Search Cart item(s) Checkout x You have no items in your shopping basket. Search entire store here... Menu Close Menu Garden Sheds Garden Sheds Back Wooden Sheds Wooden Sheds Back Overlap Sheds Shiplap Sheds Tongue and Groove Sheds Pressure Treated Sheds Dip Treated Sheds Metal Sheds Plastic Sheds All Shed Sizes 5x3 Sheds 5x4 Sheds 6x3 Sheds 6x4 Sheds 7x5 Sheds 7x7 Sheds 8x6 Sheds 8x8 Sheds 10x6 Sheds 10x8 Sheds 10x10 Sheds 12x8 Sheds 12x10 Sheds 14x8 Sheds 16x8 Sheds Garden Workshops Cheap Sheds Large Sheds Small Sheds Pent Sheds Corner Sheds Lean To Sheds Potting Sheds Shed Accessories Shed Bases Shed Shelving Shed Roofing Shed Guttering Pet Houses Timber Treatments Log Cabins Log Cabins Back Corner Log Cabins Contemporary Log Cabins Traditional Log Cabins Log Cabin Sheds Garden Gyms Kids Log Cabins Cheap Log Cabins 3x3m Log Cabins 4x3m Log Cabins 5x4m Log Cabins 19mm Log Cabins 28mm Log Cabins 34mm Log Cabins 44mm Log Cabins 70mm Log Cabins Summer Houses Summer Houses Back Contemporary Summer Houses Corner Summer Houses Octagonal Summer Houses Traditional Summer Houses 7x5 Summer Houses 8x6 Summer Houses 7x7 Summer Houses 8x8 Summer Houses 10x8 Summer Houses 12x8 Summer Houses 12x10 Summer Houses Large Summer Houses Small Summer Houses Garden Offices Garden Storage Garden Storage Back Wooden Garden Storage Metal Garden Storage Plastic Garden Storage All Garden Storage Bike Storage Log Stores Wheelie Bin Storage Garden Storage Boxes Garden Storage Benches Garden Cushion Storage Garden Tool Storage Garages Garages Back Metal Garages Motorbike Garages Wooden Garages Carports Small Garden Storage Large Garden Storage Decorative Garden Storage Greenhouses Greenhouses Back Lean To Greenhouses Wooden Greenhouses Aluminium Greenhouses Polycarbonate Greenhouses Walk In Greenhouses Mini Greenhouses Small Greenhouses Large Greenhouses 6x4 Greenhouses 6x6 Greenhouses 8x6 Greenhouses 10x6 Greenhouses 10x8 Greenhouses 8x12 Greenhouses Greenhouse Accessories Playhouses Playhouses Back Wooden Playhouses Tower Playhouses Small Playhouses Large Playhouses Fencing Fencing Back Fence Panels Fence Panels Back 6ft Fence Panels 5ft Fence Panels 4ft Fence Panels 3ft Fence Panels Closeboard Fence Panels Decorative Fence Panels Pressure Treated Fence Panels Picket Fencing Slatted Fence Panels Garden Trellis Fence Posts Garden Gates Driveway Gates Fencing Accessories Gravel Boards Outdoor Living Outdoor Living Back Garden Bars Garden Arbours & Pergolas Garden Arches Gazebos Wooden Gazebos Garden Decking Garden Decking Back Decking Kits Door Canopies Patio Covers & Garden Awnings Garden Furniture Garden Furniture Back Garden Chairs Garden Tables Garden Benches Garden Furniture Sets Wooden Garden Furniture Grow Your Own Planters Raised Beds Compost Bins Cold Frames Outdoor Accessories Outdoor Accessories Back Solar Lights BBQs & Ovens Patio Heaters & Fire Pits Outdoor Toys Outdoor Toys Back Swings and Slides Garden Sleepers Buying Guides Blog Delivery Returns My Account My Account Back Sign In Create an Account Garden Sheds * Wooden Sheds Overlap Sheds Shiplap Sheds Tongue and Groove Sheds Pressure Treated Sheds Dip Treated Sheds Metal Sheds Plastic Sheds * All Shed Sizes 5x3 Sheds 5x4 Sheds 6x3 Sheds 6x4 Sheds 7x5 Sheds 7x7 Sheds 8x6 Sheds 8x8 Sheds 10x6 Sheds 10x8 Sheds 10x10 Sheds 12x8 Sheds 12x10 Sheds 14x8 Sheds 16x8 Sheds * Garden Workshops Cheap Sheds Large Sheds Small Sheds Pent Sheds Corner Sheds Lean To Sheds Potting Sheds * Shed Accessories Shed Bases Shed Shelving Shed Roofing Shed Guttering Pet Houses Timber Treatments Log Cabins * Corner Log Cabins Contemporary Log Cabins Traditional Log Cabins Log Cabin Sheds Garden Gyms Kids Log Cabins Cheap Log Cabins * 3x3m Log Cabins 4x3m Log Cabins 5x4m Log Cabins * 19mm Log Cabins 28mm Log Cabins 34mm Log Cabins 44mm Log Cabins 70mm Log Cabins * Summer Houses * Contemporary Summer Houses Corner Summer Houses Octagonal Summer Houses Traditional Summer Houses Large Summer Houses Small Summer Houses * 7x5 Summer Houses 8x6 Summer Houses 7x7 Summer Houses 8x8 Summer Houses 10x8 Summer Houses 12x8 Summer Houses 12x10 Summer Houses * * Garden Offices Garden Storage * Wooden Garden Storage Metal Garden Storage Plastic Garden Storage Small Garden Storage Large Garden Storage * All Garden Storage Bike Storage Log Stores Wheelie Bin Storage Garden Storage Boxes Garden Storage Benches Garden Cushion Storage Garden Tool Storage Decorative Garden Storage * Garages Metal Garages Motorbike Garages Wooden Garages Carports * Greenhouses * Lean To Greenhouses Wooden Greenhouses Aluminium Greenhouses Polycarbonate Greenhouses Walk In Greenhouses * 6x4 Greenhouses 6x6 Greenhouses 8x6 Greenhouses 10x6 Greenhouses 10x8 Greenhouses 8x12 Greenhouses * Mini Greenhouses Small Greenhouses Large Greenhouses * Greenhouse Accessories Playhouses * Wooden Playhouses Tower Playhouses Small Playhouses Large Playhouses * * * Fencing * Fence Panels 6ft Fence Panels 5ft Fence Panels 4ft Fence Panels 3ft Fence Panels Closeboard Fence Panels Decorative Fence Panels Pressure Treated Fence Panels Picket Fencing Slatted Fence Panels * Garden Trellis Fence Posts Garden Gates Driveway Gates Fencing Accessories Gravel Boards * * Outdoor Living * Garden Bars Garden Arbours & Pergolas Garden Arches Gazebos Wooden Gazebos Garden Decking Decking Kits Door Canopies Patio Covers & Garden Awnings Garden Sleepers * Garden Furniture Garden Chairs Garden Tables Garden Benches Garden Furniture Sets Wooden Garden Furniture Grow Your Own Planters Raised Beds Compost Bins Cold Frames * Outdoor Accessories Solar Lights BBQs & Ovens Patio Heaters & Fire Pits Outdoor Toys Swings and Slides * Buying Guides MY BASKET You have no items in your shopping basket. MY BASKET x Subtotal: Checkout or View Basket loader Loading... Close panel Checkout using your account Email Address Password Sign In Forgot Your Password? Checkout as a new customer Creating an account has many benefits: * See order and shipping status * Track order history * Check out faster Create an Account FREE UK DELIVERY* FINANCE OPTIONS AVAILABLE INSTALLATION AVAILABLE GREAT RATING ON TRUSTPILOT Call 0333 003 0518 Click to see our opening times > undefined undefined undefined undefined undefined undefined undefined undefined undefined GARDEN SHEDS Garden Sheds From £184.99 LOG CABINS Log Cabins From £999.99 SUMMER HOUSES Summer Houses From £449.99 GARDEN WORKSHOPS Garden Workshops From £339.99 GREENHOUSES Greenhouses From £35.99 PLAYHOUSES Playhouses From £229.99 GARDEN STORAGE Garden Storage From £56.99 GARDEN FENCING Garden Fencing From £1.99 HANDPICKED FOR YOU * 6' x 4' Forest Beckwood 25yr Guarantee Shiplap ... £419.99 * 12' x 8' Forest Beckwood 25yr Guarantee Shiplap... £939.99 * 32% OFF 6' x 4' Forest 4Life 25yr Guarantee Overlap Pre... £264.99 £389.99 * 35% OFF 10' x 6' Forest 4Life 25yr Guarantee Overlap Pr... £499.99 £769.99 * 23% OFF 8' x 6' Forest 4Life 25yr Guarantee Overlap Pre... £429.99 £559.99 * 27% OFF 6' x 3' Forest 4Life 25yr Guarantee Overlap Pre... £279.99 £384.99 * 8' x 5' Forest Retreat Grey Luxury Shed (2.41m ... £3,989.00 £4,199.00 * 30% OFF 4' x 3' Forest 4Life 25yr Guarantee Overlap Pre... £219.99 £314.99 MOST POPULAR BRANDS GARDEN BUILDINGS & SHEDS FOR SALE AT SHEDSTORE SHEDS The traditional garden shed is a widely loved addition to any garden. At Shedstore, we have a large variety to choose from including traditional wooden sheds, low maintenance plastic sheds and secure metal sheds. Expect great prices on all of our garden storage sheds for sale. Need a little extra storage? From cushion storage boxes to carports, we also offer a huge selection of garden storage solutions and greenhouses, which come in a variety of sizes and styles. GARDEN BUILDINGS It’s not just sheds and storage solutions that we sell. Delve deeper into our extensive range of garden buildings which can be used as additional living, working, and playing spaces to enhance your outdoor lifestyle. Our assortment includes log cabins, garden offices, summer houses, and playhouses, each designed with meticulous attention to detail, functionality, and aesthetics. Explore below to discover how these buildings can transform your garden into a dynamic, versatile, and inviting space. LOG CABINS Looking for extra living space? One of our log cabins can provide the space you need for you and your family. Whether you intend to extend your entertaining space or create a relaxing garden retreat, these versatile garden buildings are ideal. The thick walls provide superior insulation allowing you to use these buildings even in cold weather. GARDEN OFFICES For the homeworkers out there, we provide a fantastic range of garden offices, including our premium UPVC double glazed Xtend buildings, which come fully insulated and with a 15-year structural guarantee. SUMMER HOUSES Do you want a comfortable place to relax in the garden? Then definitely consider getting a summer house. These light and airy garden buildings are great additions for making the most of your outdoor space, especially during the summer months. We have an amazing range of traditional and contemporary designs for you to choose from, so you're guaranteed to find something for your garden. PLAYHOUSES Bring your back garden to life, with a fantastic playhouse that your kids will love for years to come. We have a great variety to choose from including wooden playhouses, as well as towers with slides and even swings. FREE UK DELIVERY The vast majority of our sheds, storage units and garden buildings are delivered completely free of charge to most UK mainland postcodes. We even offer a 'pick-a-day' delivery service on selected products. Our aim is always to deliver as promptly and efficiently as possible, directly to your home. SATISFACTION GUARANTEED WITH SHEDSTORE Online since 2000, we offer one of the largest selections of garden buildings and storage products on the web, sourced from the UK's top manufacturers. Browse Shedstore today and discover the perfect solution for your garden space with an extensive range of outdoor buildings and storage sheds for sale, including plastic sheds, metal sheds, and wooden sheds. We offer cost-effective and great quality garden rooms, workshops, and buildings of all kinds, perfect for your outdoor living. Need a little extra? Why not enhance your garden with extra security features like solar lighting, ensuring your outdoor sheds serve you perfectly every season. As well as free delivery, we also provide fitting and installing services for those who need a helping hand. No matter what you’re looking for, we’ll have the ideal storage solution to provide you with extra space all year-round. So don’t delay, transform your garden into an outdoor oasis with our premium storage sheds, garden rooms, log cabin options, and much more. front SHOPPING WITH US How To Shop Payments Guarantee Forest Pro-Installation Service Trade and Wholesale Enquiries Shedstore Reviews Big Brands at Small Prices Sheds Near Me PayPal Credit Payments CUSTOMER SERVICE Contact Us Call Back Live Chat Delivery Returns Pick a Day Service Help & Advice Buying Guides FAQs Social Media COMPANY & LEGAL About Us Terms and Conditions Cookie Policy Privacy Policy Site Security Shedstore Affiliate Programme £10 off your first order over £400 when you sign up for news & updates Shedstore.co.uk is a trading website of Taylored Investments Ltd All prices include VAT. *Free delivery and Pick A Day delivery areas vary by product range, see individual product pages for details. Restrictions apply: see product lead-time and post code checker for availability. All sizes quoted are approximate. Products where shown painted have been decorated for photography purposes only. Credit subject to status and affordability. Terms & Conditions Apply. Taylored Investments Limited trading as www.shedstore.co.uk is a credit broker and is Authorised and Regulated by the Financial Conduct Authority. Credit is provided by PayPal Credit, a trading name of PayPal UK Ltd, Whittaker House, Whittaker Avenue, Richmond-Upon-Thames, Surrey, United Kingdom, TW9 1EH, authorised and regulated by the Finance Conduct Authority. Finance Services Register no.808214. 7d455604de0af72276a5158a0c4c1dc3ed367c7db7ada6b814d7985364d1df3b 2a01:4a0:2b::5 x Price: Actual Price: Price: Actual Price: Our price is lower than the manufacturer's "minimum advertised price." As a result, we cannot show you the price in catalog or the product page. You have no obligation to purchase the product once you know the price. You can simply remove the item from your cart. Top