<!doctype html>
<html lang="en" prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#">
<head>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <title>Craft Supplies - Cardmaking & Papercraft - Paint - Wood | Cuddly Buddly Crafts</title>
    <link href="http://s.cbimg.net/s/css/screen.v1389232344.css" media="screen, projection" rel="stylesheet" type="text/css" />
    <!--[if lt IE 9]><script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
    <meta property="fb:app_id" content="190612264373430" />
    <meta property="og:site_name" content="Cuddly Buddly Crafts" />
    <link rel="shortcut icon" href="http://s.cbimg.net/s/favicon.v2.ico" />
    <link rel="apple-touch-icon-precomposed" href="http://s.cbimg.net/s/apple_touch_icon.v2.png"/>
    <link rel="search" type="application/opensearchdescription+xml" href="http://s.cbimg.net/s/opensearch.xml" title="Cuddly Buddly Crafts Search" />
    
<meta name="description" content="Quality craft supplies for cardmaking, papercraft, home crafts, fabric & haberdashery, and jewellery making. Helping You to Keep Creating." />

    <script type="text/javascript">
    var _gaq = _gaq || [];
    _gaq.push(
    ['_setAccount', 'UA-1050488-1'],
    ['_trackPageview'],
    ['_setDomainName', 'cuddlybuddly.com'],
    ['_addIgnoredRef', 'cuddlybuddly.com']
    );
    (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
    })();
    </script>
</head>

<body itemscope itemtype="http://schema.org/WebPage" class="site-background">
    <script>document.write('<style>.page-controls input[type="submit"], .shop-basket-shipping-options input[type="submit"] {display:none;}</style>')</script>

    <header class="site-header">
	<nav>
	    <ul>
		<li class="menu"><a href="#menu-open"></a><a href="#"></a></li>
		<li class="logo"><a href="/"><img src="http://s.cbimg.net/s/img/logo.svg" /></a></li>
		<li class="phone"><span><a href="tel:+448000337651">0800 033 7651</a></span></li>
		<li class="search">
		    <div>
			<form method="get" action="/shop/search/">
			    <span><input name="q" type="search" placeholder="Search the shop" /></span>
			    <span><button>Search</button></span>
			</form>
		    </div>
		</li>
		<li class="basket">
		    <a id="site-basket" href="/basket/">
			<ul class="nojs">
			    <li class="last-child"><span>Go to basket</span></li>
			</ul>
			<ul class="empty no-free-shipping">
			    <li>We ship all around the world</li>
			    <li class="nth-of-type-2">Shipping to <abbr class="country" title="United Kingdom">UK</abbr> starts at £<span class="shipping_price">2.16</span></li>
			    <li>or free over £<span class="free_shipping">30.00</span> spend</li>
			    <li class="last-child"><span>Empty</span></li>
			</ul>
			<ul class="full no-free-shipping">
			    <li><span class="num_items"><span>0</span> <span>items</span></span>: £<span class="subtotal">0.00</span></li>
			    <li class="nth-of-type-2">Spend £<span class="free_shipping">0.00</span> more for free shipping</li>
			    <li>Shipping to <abbr class="country" title="United Kingdom">UK</abbr>: £<span class="shipping_price">0.00</span></li>
			    <li class="last-child"><span>Total: £<span class="total">0.00</span></span></li>
			</ul>
		    </a>
		    <script>if (!!window.localStorage && window.location.protocol != 'https:') {
			var el = document.getElementById('site-basket'), els = el.children, fetch = false, basket;
			try {
			    basket = JSON.parse(window.localStorage.getItem('basket'));
			    if (!basket) throw "";
			} catch (e) {
			    fetch = true;
			}
			if (document.cookie.search(/(^|;\s?)cbb=/) > -1) {
			    fetch = true;
			    document.cookie = 'cbb=; expires=' + new Date(+new Date() - 1000) + '; path=/';
			}
			function update_header_basket(d) {
			    window.localStorage.setItem('basket', JSON.stringify(d));
			    for (var i = 0; i < els.length; i++) els[i].style.display = 'none';
			    var e = (d.num_items) ? els[2] : els[1],
				savings = d.gift_certificates_savings - -d.coupon_savings,
				more = (d.free_shipping - d.total - -d.shipping_price - savings).toFixed(2);
			    e.style.display = 'block';
			    e.className = (more > 0) ? e.className.replace('no-free-shipping', '') : e.className += (e.className.indexOf('no-free-shipping') > -1) ? '' : ' no-free-shipping';
			    var p = ['num_items', 'subtotal', 'shipping_price', 'free_shipping', 'total', 'country'];
			    for (var i = 0; i < p.length; i++) {
				var e = el.querySelectorAll('.' + p[i]);
				for (var j = 0; j < e.length; j++) {
				    var v = d[p[i]];
				    switch(p[i]) {
					case 'country':
					    if (v == 'GB') v = 'UK';
					    e[j].title = d['country_name'];
					    break
					case 'subtotal':
					    if (d['num_items']) {
						v = (d.total - d.shipping_price).toFixed(2);
						if (v < 0) {
						    d['shipping_price'] = (d['shipping_price'] - -v).toFixed(2);
						    v = (0).toFixed(2);
						}
					    }
					    break
					case 'free_shipping':
					    v = (d.num_items) ? more : v;
					    break
				    }
				    if (p[i] == 'num_items') {
					e[j].children[0].innerHTML = v;
					e[j].children[1].innerHTML = (v == 1) ? 'item' : 'items';
				    } else {
					e[j].innerHTML = v;
				    }
				}
			    }
			}
			if (fetch || basket.coupon_savings === undefined) {
			    var x = new XMLHttpRequest();
			    x.onload = function(e) {
			        var e = e.currentTarget;
				if (e.status == 200) {
				    var r = e.responseText;
				    update_header_basket(JSON.parse(r));
				}
			    }
			    x.open('POST', '/basket/', true);
			    x.setRequestHeader('X-Requested-With', 'XMLHttpRequest');
			    x.send();
			} else {
			    update_header_basket(basket);
			}
		    }</script>
		</li>
		<li class="nav">
		    <div><ul>
			<li class="selected">
			    <a href="/">Shop</a>
			    <div><ul>
				<li><a href="/shop/b47-digital-crafts/">Digital</a></li>
				<li><a href="/shop/b1054-fabrics-haberdashery/">Fabrics &amp; Habby</a></li>
				<li><a href="/shop/b924-home-crafts/">Home Crafts</a></li>
				<li><a href="/shop/b1421-jewellery-making/">Jewellery</a></li>
				<li><a href="/shop/b1463-cardmaking-papercraft/">Papercraft</a></li>
			    </ul></div>
			</li>
			<li>
			    <a href="/craft-ideas/">Ideas</a>
			    <div><ul>
				<li><a href="/craft-ideas/">Get craft ideas and inspiration</a></li>
			    </ul></div>
			</li>
			<li>
			    <a href="/arpy/">ARPY</a>
			    <div><ul>
				<li><a href="/arpy/">Easily resize and print digital images for free</a></li>
			    </ul></div>
			</li>
			<li>
			    <a href="/accounts/">Account</a>
			    <div><ul>
				<li><a href="/accounts/orders/">Orders</a></li>
				<li><a href="/accounts/downloads/">Downloads</a></li>
				<li><a href="/accounts/giftcertificates/">Gift Certificates</a></li>
				<li><a href="/wishlists/">Wishlist</a></li>
				<li><a href="/accounts/settings/">Settings</a></li>
				<li><a href="/accounts/logout/">Logout</a></li>
			    </ul></div>
			</li>
			<li>
			    <a href="http://cuddlybuddly.desk.com">Help</a>
			    <div><ul>
				<li><a href="/delivery-information/">Delivery Info</a></li>
				<li><a href="/returns-policy/">Returns Policy</a></li>
				<li><a href="/about-us/">About Us</a></li>
				<li><a href="/terms-of-use/">Terms of Use</a></li>
				<li><a href="/privacy-policy/">Privacy Policy</a></li>
				<li><a href="http://cuddlybuddly.desk.com">More Help</a></li>
			    </ul></div>
			</li>
			<li>
			    <a href="http://cuddlybuddly.desk.com/customer/portal/emails/new">Contact</a>
			    <div><ul>
				<li><a href="http://cuddlybuddly.desk.com/customer/portal/emails/new">Contact us by e-mail</a></li>
				<li><a href="tel:+448000337651">Phone: 0800 033 7641</a></li>
				<li><a href="http://www.facebook.com/pages/Cuddly-Buddly/123272471038135">Facebook</a></li>
			    </ul></div>
			</li>
		    </ul></div>
		</li>
	    </ul>
	</nav>
    </header>

    

    <section class="site-messages"><ul></ul></section>

    <div class="site-main" role="main">
	
    
    <section class="homepage-carousel">
	<div><a href="http://cuddlybuddly.com/shop/b924-home-crafts/1474-items-to-decorate/1090-mdf-items-to-decorate/1785-mdf-chest-of-drawers/" style="background-image: url('http://m.cbimg.net/bans/chest_drawers_banner_1.jpg');" class="formatted-text"><h2>FUN STORAGE</h2><p>Personalise these charming MDF chests of drawers to suit your home decor.</p>
<ul>
<li><em>Shop MDF Chest of Drawers</em></li>
</ul></a><a href="http://cuddlybuddly.com/shop/b47-digital-crafts/1581-coloured-clipart/?order=-date" data-style="background-image: url('http://m.cbimg.net/bans/elines_digital_clipart.jpg');" class="formatted-text"><h2>DISCOVER DIGITALS ...</h2><p>with Eline's Free Colour ClipArt Sampler Set. </p>
<p>Resize, Print &amp; Craft with instant access digital art.</p>
<ul>
<li><em>Shop Digital Art for Crafts</em></li>
</ul></a><a href="http://cuddlybuddly.com/shop/a/brand/38-marianne-design/?order=-date" data-style="background-image: url('http://m.cbimg.net/bans/marianne_3.jpg');" class="formatted-text"><h2>OOOHH LA LA!</h2><p>NEW - January Collection of dies, stamps, papers and cutting sheets by Marianne Design.</p>
<ul>
<li><em>Marianne Design Collections</em></li>
</ul></a><a href="http://cuddlybuddly.com/shop/b924-home-crafts/49-paints-accessories/1781-americana-decor-chalky-finish-paint/" data-style="background-image: url('http://m.cbimg.net/bans/chalky_finish_banner.jpg');" class="formatted-text"><h2>CHALKY FINISH</h2><p>New home decor paint range from DecoArt Americana.</p>
<ul>
<li><em>Shop Decor Chalky Finish</em></li>
</ul></a><a href="http://cuddlybuddly.com/shop/b924-home-crafts/680-candle-decorating-making/" data-style="background-image: url('http://m.cbimg.net/bans/candle_making_2.jpg');" class="formatted-text"><h2>CANDLE CRAFT</h2><p>Enjoy making and decorating beautiful candles to cheer up your home through the dark winter nights.</p>
<ul>
<li><em>Shop Candle Making &amp; Decorating</em></li>
</ul></a></div>
    </section>

    <section class="homepage-new-special">
	<ol>
	    
		<li>
		    <a href="http://cuddlybuddly.com/shop/b1702-cuddly-buddly-craft-sale/" style="background-image: url('http://m.cbimg.net/bans/sale_small_1.jpg');">
			<h2>75% Off Clearance</h2>
		    </a>
		</li>
	    
		<li>
		    <a href="http://cuddlybuddly.com/shop/new/?show=192" style="background-image: url('http://m.cbimg.net/bans/new_products_2_6.jpg');">
			<h2>NEW in the Shop</h2>
		    </a>
		</li>
	    
	</ol>
    </section>

    <section class="homepage-departments">
	<h1>Shop by Department</h1>
	<ol>
	    
		<li>
		    <a href="http://cuddlybuddly.com/shop/b1463-cardmaking-papercrafting/" class="formatted-text" style="background-image: url('http://m.cbimg.net/bans/Cardmaking_22.jpg');">
			<h2>Card Making &amp; Papercraft</h2>
			<p>Create beautiful hand crafted<br>
greeting cards and keepsakes with<br>
decorative papers and easy to use<br>
die cutting tools, stamps, inks<br>
and embellishments.</p>
<ul>
<li><em>Shop for card making &amp;<br>
papercraft supplies</em></li>
</ul>
		    </a>
		</li>
	    
		<li>
		    <a href="http://cuddlybuddly.com/shop/b47-digital-crafts/" class="formatted-text" style="background-image: url('http://m.cbimg.net/bans/digital_20.jpg');">
			<h2>Digital Art for Crafts</h2>
			<p>Print and craft with instant access<br>
digital stamps, papers and printables.</p>
<p>No downloading required when you<br>
resize and print using ARPY our<br>
free online software.</p>
<ul>
<li><em>Shop for digital art</em></li>
</ul>
		    </a>
		</li>
	    
		<li>
		    <a href="http://cuddlybuddly.com/shop/b1054-fabrics-haberdashery/" class="formatted-text" style="background-image: url('http://m.cbimg.net/bans/haberdashery_15.jpg');">
			<h2>Fabrics &amp; Haberdashery</h2>
			<p>From blank cotton and jute ready made articles<br>
to decorate, to luxurious cotton fabrics and<br>
wool felts we can help you with your sewing<br>
needs.</p>
<p>For your convenience our ribbon, lace and<br>
broderie anglais is sold by the metre.</p>
<ul>
<li><em>Shop for fabrics &amp; haberdashery</em></li>
</ul>
		    </a>
		</li>
	    
		<li>
		    <a href="http://cuddlybuddly.com/shop/b924-home-crafts/" class="formatted-text" style="background-image: url('http://m.cbimg.net/bans/home_crafts_19.jpg');">
			<h2>Home Crafts</h2>
			<p>Craft unique gifts for family and friends<br>
with items to decorate in bare wood, MDF,<br>
acrylic, styrofoam and papier mache.</p>
<p>You’ll find the paint, glue, polymer clay<br>
and other useful craft supplies here too.</p>
<ul>
<li><em>Shop for home craft supplies</em></li>
</ul>
		    </a>
		</li>
	    
		<li>
		    <a href="http://cuddlybuddly.com/shop/b1421-jewellery-making/" class="formatted-text" style="background-image: url('http://m.cbimg.net/bans/jewellery_19.jpg');">
			<h2>Jewellery Making</h2>
			<p>Make your own jewellery, clay<br>
beads, pendants and beaded<br>
decorations - keep it simple and<br>
fun or go for tricky and challenging!</p>
<ul>
<li><em>Shop for jewellery supplies</em></li>
</ul>
		    </a>
		</li>
	    
		<li>
		    <a href="https://www.facebook.com/CuddlyBuddly" class="formatted-text" style="background-image: url('http://m.cbimg.net/bans/2014_1_homepage.jpg');">
			<h2>WIN!</h2>
			<p>Join us on Facebook<br>
for your chance to WIN<br>
over £100 of<br>
craft products.  </p>
<ul>
<li><em>Enter Giveaway</em></li>
</ul>
		    </a>
		</li>
	    
	</ol>
    </section>

    <section class="homepage-other">
	<h1>Shop by Product</h1>
	<ol>
	    
		<li>
		    <a href="http://cuddlybuddly.com/shop/b1742-a-handmade-wedding/"><img src="http://m.cbimg.net/bans/handmade_wedding.jpg" alt="Clear stamps, cards, papers, stencils, styrofoam, ribbon, lace, flowers and craft supplies for wedding invitations, stationery, favours and decorations." /></a>
		</li>
	    
		<li>
		    <a href="http://cuddlybuddly.com/shop/b924-home-crafts/29-modelling-casting/680-candle-decorating-making/"><img src="http://m.cbimg.net/bans/candle_decorating_making_2.jpg" alt="Candle decorating wax pens, coloured wax sheets and pictures, wax strips, candle moulds, candle wicks, wax colourings, candle scents and wax pellets for candle decorating and making." /></a>
		</li>
	    
		<li>
		    <a href="http://cuddlybuddly.com/shop/b1463-cardmaking-papercrafting/289-die-cutting-embossing/?show=192"><img src="http://m.cbimg.net/bans/die_cutting_4.jpg" alt="Marianne Design, Joy! Crafts, Sizzix and cArt-Us die cutting and embossing tools and machines for cardmaking, papercrafting and wedding abd birtday celebration stationery and favors." /></a>
		</li>
	    
		<li>
		    <a href="http://cuddlybuddly.com/shop/b1054-fabrics-haberdashery/1477-felts-needle-felting/1147-needle-felting-wool-tools/"><img src="http://m.cbimg.net/bans/felt_making.jpg" alt="Wool roving, felting needles, handles, foam mats and soap for needle felting and felt making." /></a>
		</li>
	    
		<li>
		    <a href="http://cuddlybuddly.com/shop/b1463-cardmaking-papercrafting/1500-flowers-leaves/"><img src="http://m.cbimg.net/bans/flowers_2.jpg" alt="Silk fabric and paper flowers by Marianne Design and Prima Marketing for cardmaking, papercrafting and wedding crafts." /></a>
		</li>
	    
		<li>
		    <a href="http://cuddlybuddly.com/shop/b924-home-crafts/1474-items-to-decorate/"><img src="http://m.cbimg.net/bans/items_to_decorate_3.jpg" alt="Bare Wooden, MDF, Acrylic, Papier Mache boxes, frames, plaques, shapes, trees and objects and items to decorate for painting and decoupage." /></a>
		</li>
	    
		<li>
		    <a href="http://cuddlybuddly.com/shop/b1654-marianne-design-craft-supplies/"><img src="http://m.cbimg.net/bans/marianne_design_3.jpg" alt="Marianne Design die cutting and embossing dies, papers, stamps, ribbons, charms, flowers and so many more craft supplies for card making and paper crafting." /></a>
		</li>
	    
		<li>
		    <a href="http://cuddlybuddly.com/shop/b924-home-crafts/1384-masks-stencils/"><img src="http://m.cbimg.net/bans/masks_stencils.jpg" alt="Flexible and acrylic masks and stencils for paint and inks for craft work, mixed media work and paper crafts." /></a>
		</li>
	    
		<li>
		    <a href="http://cuddlybuddly.com/shop/b924-home-crafts/29-modelling-casting/"><img src="http://m.cbimg.net/bans/modelling.jpg" alt="Modelling clays and casting powders, moulds, tools by FIMO, Knorr Prandell and Makin&#39;s for polymer clay, jewellery clay, chocolate, soap and casting powders. Candle wax decorations, pens and moulds." /></a>
		</li>
	    
		<li>
		    <a href="http://cuddlybuddly.com/shop/b924-home-crafts/49-paints-accessories/"><img src="http://m.cbimg.net/bans/paints_4.jpg" alt="DecoArt and Viva Decor acrylic, metallic, glass, fabric, foam, mirror, magnet and blackboard paints for crafting and tole painting." /></a>
		</li>
	    
		<li>
		    <a href="http://cuddlybuddly.com/shop/b1463-cardmaking-papercrafting/51-paper-card/"><img src="http://m.cbimg.net/bans/papers_11.jpg" alt="Beautiful decoupage, glitter, mulberry, fine crepe and scrapbooking papers by Marianne Design, Prima, cArt-Us, Core&#39;dinations, Bazzill, for cardmaking and paper crafting." /></a>
		</li>
	    
		<li>
		    <a href="http://cuddlybuddly.com/shop/b1054-fabrics-haberdashery/1562-ribbons-lace/"><img src="http://m.cbimg.net/bans/ribbons_3.jpg" alt="Beautiful ribbons &amp; lace by May Arts, Berisfords, Bertie&#39;s Bows, Safisa Spiral - sold by the metre" /></a>
		</li>
	    
		<li>
		    <a href="http://cuddlybuddly.com/shop/b1463-cardmaking-papercraft/53-stamping-inks-tools/"><img src="http://m.cbimg.net/bans/stamping_inks_2.jpg" alt="Alcohol Inks, Perfect Pearl Mists &amp; Powders, Soft Gentle Colour, Dye &amp; Pigment Inkpads &amp; Reinkers for rubber and clear stamps, Stamp Glitter paste, Embossing Cream, Powder, UTEE supplies for stamping, masking and stencilling craft techniques." /></a>
		</li>
	    
		<li>
		    <a href="http://cuddlybuddly.com/shop/b1563-starting-out-cardmaking/"><img src="http://m.cbimg.net/bans/cardmaking_shortcut_1.jpg" alt="A shortcut to products we recommend to help you get started in making your own greeting cards.
" /></a>
		</li>
	    
		<li>
		    <a href="http://cuddlybuddly.com/shop/b1680-viva-decor-craft-supplies/1681-my-paper-world/"><img src="http://m.cbimg.net/bans/my_paper_world_s_1.jpg" alt="Viva Decor&#39; My Paper World, clear stamps, stencils, masks, pearl pens, glitter pens, gentle soft colour, glitter stamp paste and more." /></a>
		</li>
	    
	</ol>
    </section>

    <section class="homepage-manufacturers">
	<h1>Shop by Brand</h1>
	<ol>
	    <li><a href="/shop/a/brand/3-bazzill-basics-paper/" title="Bazzill Basics Paper" class="mans-bbp">Bazzill Basics Paper</a></li>
	    <li><a href="/shop/a/brand/6-cart-us/" title="cArt-us" class="mans-cartus">cArt-Us</a></li>
	    <li><a href="/shop/a/brand/235-collall/" title="Collall" class="mans-collall">Collall</a></li>
	    <li><a href="/shop/b1053-copic-ciao-marker-pens/" title="Copic" class="mans-copic">Copic</a></li>
	    <li><a href="/shop/a/brand/15-decoart/" title="DecoArt" class="mans-da">DecoArt</a></li>
	    <li><a href="/shop/a/brand/70-dmc/" title="DMC" class="mans-dmc">DMC</a></li>
	    <li><a href="/shop/a/brand/21-fimo/" title="FIMO" class="mans-fimo">FIMO</a></li>
	    <li><a href="/shop/a/brand/25-hemline-haberdashery/" title="Hemline" class="mans-hemline">Hemline</a></li>
	    <li><a href="/shop/a/brand/264-joy-crafts/" title="Joy! Crafts" class="mans-jc">Joy! Crafts</a></li>
	    <li><a href="/shop/a/brand/32-knorr-prandell/" title="Knorr Prandell" class="mans-kp">Knorr Prandell</a></li>
	    <li><a href="/shop/b1654-marianne-design-craft-supplies/" title="Marianne Design" class="mans-marianne">Marianne Design</a></li>
	    <li><a href="/shop/a/brand/42-may-arts/" title="May Arts" class="mans-ma">May Arts</a></li>
	    <li><a href="/shop/a/brand/46-pergamano/" title="Pergamano" class="mans-pergamano">Pergamano</a></li>
	    <li><a href="/shop/a/brand/50-prima/" title="Prima" class="mans-prima">Prima</a></li>
	    <li><a href="/shop/a/brand/52-ranger/" title="Ranger" class="mans-ranger">Ranger</a></li>
	    <li><a href="/shop/a/brand/54-sizzix/" title="Sizzix" class="mans-sizzix">Sizzix</a></li>
	    <li><a href="/shop/a/brand/59-tilda/" title="Tilda" class="mans-tilda">Tilda</a></li>
	    <li><a href="/shop/a/brand/60-tim-holtz/" title="Tim Holtz" class="mans-th">Time Holtz</a></li>
	    <li><a href="/shop/a/brand/63-tsukineko/" title="Tsukineko" class="mans-tsukineko">Tsukineko</a></li>
	    <li><a href="/shop/b1680-viva-decor-craft-supplies/" title="Viva Decor" class="mans-viva">Viva Decor</a></li>
	    <li><a href="/shop/a/brand/66-we-r-memory-keepers/" title="We R Memory Keepers" class="mans-wrmk">We R Memory Keepers</a></li>
	</ol>
    </section>


    </div>

    <footer class="site-footer">
	<div>
	    <div class="last-child">
		<section class="site-newsletter">
		    <h2>Join our newsletter</h2>
		    <p>Find out about new products and ideas by joining our weekly newsletter. <a href="http://us2.campaign-archive2.com/home/?u=14d5454fa5e6498d0c6f8ad89&amp;id=7ed08e30e8">Check out some of our past issues to see what you'll get</a>.</p>
		    <form method="post" action="/subscribe/">
			<input type="email" name="email_address" placeholder="Enter your e-mail address" required="required" /><input type="submit" value="Subscribe" />
		    </form>
		</section>
		<section>
		    <h2>Shop</h2>
		    <ul>
			<li><a href="/shop/b1742-a-handmade-wedding/">A Handmade Wedding</a></li>
		    
			<li><a href="/shop/b1463-card-making-papercraft/">Card Making &amp; Papercraft</a></li>
		    
			<li><a href="/shop/b1702-cuddly-buddly-sale/">Cuddly Buddly SALE</a></li>
		    
			<li><a href="/shop/b47-digital-art-for-crafts/">Digital Art for Crafts</a></li>
		    
			<li><a href="/shop/b1054-fabrics-haberdashery/">Fabrics &amp; Haberdashery</a></li>
		    
			<li><a href="/shop/b923-gift-certificates/">Gift Certificates</a></li>
		    
			<li><a href="/shop/b924-home-crafts/">Home Crafts</a></li>
		    
			<li><a href="/shop/b1421-jewellery-making/">Jewellery Making</a></li>
		    
			<li><a href="/shop/b1654-marianne-design-craft-supplies/">Marianne Design Craft Supplies</a></li>
		    
			<li><a href="/shop/b1563-starting-out-cardmaking/">Starting Out ... Cardmaking</a></li>
		    
			<li><a href="/shop/b1680-viva-decor-craft-supplies/">Viva Decor Craft Supplies</a></li>
		    </ul>
		</section>
		<section>
		    <h2>Join Us</h2>
		    <div class="fb-like-box" data-href="http://www.facebook.com/pages/Cuddly-Buddly/123272471038135" data-width="292" data-show-faces="true" data-stream="false" data-header="true"></div>
		</section>
		<section class="last-child">
		    <h2>Contact</h2>
		    <div itemscope itemtype="http://schema.org/Organization">
			<div itemprop="name">Cuddly Buddly Crafts</div>
			<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
			    <div itemprop="streetAddress">Brumblewick</div>
			    <div itemprop="streetAddress">104 Luttongate</div>
			    <div><span itemprop="addressLocality">Spalding</span>, <span itemprop="addressRegion">Lincolnshire</span></div>
			    <div itemprop="postalCode">PE12 0QJ</div>
			</div>
			<div itemprop="telephone">0800 033 7651</div>
		    </div>
		    <h2>E-mail</h2>
		    <div><a href="http://cuddlybuddly.desk.com/customer/portal/emails/new">E-mail us from our contact page</a></div>
		    <h2>That Stuff</h2>
		    <ul>
			<li><a href="/about-us/">About Us</a></li>
			<li><a href="/privacy-policy/">Privacy Policy</a></li>
			<li><a href="/terms-of-use/">Terms of Use</a></li>
		    </ul>
		</section>
	    </div>
	</div>
    </footer>

    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
    <script>window.jQuery || document.write('<script src="http://s.cbimg.net/s/js/jquery-1.7.1.min.js"><\/script>')</script>
    <!--[if lt IE 9]><script src="http://s.cbimg.net/s/js/PIE.js" type="text/javascript"></script><![endif]-->
    <script src="http://s.cbimg.net/s/js/script.v1382320942.js" type="text/javascript"></script>
    <div id="fb-root"></div>
    <script>(function(d){
    var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
    if (d.getElementById(id)) {return;}
    js = d.createElement('script'); js.id = id; js.async = true;
    js.src = "//connect.facebook.net/en_GB/all.js#xfbml=1&appId=190612264373430&channelUrl=//" + window.location.hostname + "/channel/";
    ref.parentNode.insertBefore(js, ref);
    }(document));</script>
    
</body>
</html>