It looks like this is a web page, not a feed. I looked for a feed associated with this page, but couldn't find one. Please enter the address of your feed to validate.

Source: https://resinboundgravel.uk/

  1. <!doctype html>
  2. <html lang="en-GB" >
  3. <head>
  4.    <title>Resin Bound Gravel</title>
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta name='robots' content='max-image-preview:large' />
  7. <script type="text/javascript">
  8. /* <![CDATA[ */
  9. window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/resinboundgravel.uk\/wp-includes\/js\/wp-emoji.js?ver=6.5.2","twemoji":"https:\/\/resinboundgravel.uk\/wp-includes\/js\/twemoji.js?ver=6.5.2"}};
  10. /**
  11. * @output wp-includes/js/wp-emoji-loader.js
  12. */
  13.  
  14. /**
  15. * Emoji Settings as exported in PHP via _print_emoji_detection_script().
  16. * @typedef WPEmojiSettings
  17. * @type {object}
  18. * @property {?object} source
  19. * @property {?string} source.concatemoji
  20. * @property {?string} source.twemoji
  21. * @property {?string} source.wpemoji
  22. * @property {?boolean} DOMReady
  23. * @property {?Function} readyCallback
  24. */
  25.  
  26. /**
  27. * Support tests.
  28. * @typedef SupportTests
  29. * @type {object}
  30. * @property {?boolean} flag
  31. * @property {?boolean} emoji
  32. */
  33.  
  34. /**
  35. * IIFE to detect emoji support and load Twemoji if needed.
  36. *
  37. * @param {Window} window
  38. * @param {Document} document
  39. * @param {WPEmojiSettings} settings
  40. */
  41. ( function wpEmojiLoader( window, document, settings ) {
  42. if ( typeof Promise === 'undefined' ) {
  43. return;
  44. }
  45.  
  46. var sessionStorageKey = 'wpEmojiSettingsSupports';
  47. var tests = [ 'flag', 'emoji' ];
  48.  
  49. /**
  50. * Checks whether the browser supports offloading to a Worker.
  51. *
  52. * @since 6.3.0
  53. *
  54. * @private
  55. *
  56. * @returns {boolean}
  57. */
  58. function supportsWorkerOffloading() {
  59. return (
  60. typeof Worker !== 'undefined' &&
  61. typeof OffscreenCanvas !== 'undefined' &&
  62. typeof URL !== 'undefined' &&
  63. URL.createObjectURL &&
  64. typeof Blob !== 'undefined'
  65. );
  66. }
  67.  
  68. /**
  69. * @typedef SessionSupportTests
  70. * @type {object}
  71. * @property {number} timestamp
  72. * @property {SupportTests} supportTests
  73. */
  74.  
  75. /**
  76. * Get support tests from session.
  77. *
  78. * @since 6.3.0
  79. *
  80. * @private
  81. *
  82. * @returns {?SupportTests} Support tests, or null if not set or older than 1 week.
  83. */
  84. function getSessionSupportTests() {
  85. try {
  86. /** @type {SessionSupportTests} */
  87. var item = JSON.parse(
  88. sessionStorage.getItem( sessionStorageKey )
  89. );
  90. if (
  91. typeof item === 'object' &&
  92. typeof item.timestamp === 'number' &&
  93. new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds.
  94. typeof item.supportTests === 'object'
  95. ) {
  96. return item.supportTests;
  97. }
  98. } catch ( e ) {}
  99. return null;
  100. }
  101.  
  102. /**
  103. * Persist the supports in session storage.
  104. *
  105. * @since 6.3.0
  106. *
  107. * @private
  108. *
  109. * @param {SupportTests} supportTests Support tests.
  110. */
  111. function setSessionSupportTests( supportTests ) {
  112. try {
  113. /** @type {SessionSupportTests} */
  114. var item = {
  115. supportTests: supportTests,
  116. timestamp: new Date().valueOf()
  117. };
  118.  
  119. sessionStorage.setItem(
  120. sessionStorageKey,
  121. JSON.stringify( item )
  122. );
  123. } catch ( e ) {}
  124. }
  125.  
  126. /**
  127. * Checks if two sets of Emoji characters render the same visually.
  128. *
  129. * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
  130. * scope. Everything must be passed by parameters.
  131. *
  132. * @since 4.9.0
  133. *
  134. * @private
  135. *
  136. * @param {CanvasRenderingContext2D} context 2D Context.
  137. * @param {string} set1 Set of Emoji to test.
  138. * @param {string} set2 Set of Emoji to test.
  139. *
  140. * @return {boolean} True if the two sets render the same.
  141. */
  142. function emojiSetsRenderIdentically( context, set1, set2 ) {
  143. // Cleanup from previous test.
  144. context.clearRect( 0, 0, context.canvas.width, context.canvas.height );
  145. context.fillText( set1, 0, 0 );
  146. var rendered1 = new Uint32Array(
  147. context.getImageData(
  148. 0,
  149. 0,
  150. context.canvas.width,
  151. context.canvas.height
  152. ).data
  153. );
  154.  
  155. // Cleanup from previous test.
  156. context.clearRect( 0, 0, context.canvas.width, context.canvas.height );
  157. context.fillText( set2, 0, 0 );
  158. var rendered2 = new Uint32Array(
  159. context.getImageData(
  160. 0,
  161. 0,
  162. context.canvas.width,
  163. context.canvas.height
  164. ).data
  165. );
  166.  
  167. return rendered1.every( function ( rendered2Data, index ) {
  168. return rendered2Data === rendered2[ index ];
  169. } );
  170. }
  171.  
  172. /**
  173. * Determines if the browser properly renders Emoji that Twemoji can supplement.
  174. *
  175. * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
  176. * scope. Everything must be passed by parameters.
  177. *
  178. * @since 4.2.0
  179. *
  180. * @private
  181. *
  182. * @param {CanvasRenderingContext2D} context 2D Context.
  183. * @param {string} type Whether to test for support of "flag" or "emoji".
  184. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification.
  185. *
  186. * @return {boolean} True if the browser can render emoji, false if it cannot.
  187. */
  188. function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) {
  189. var isIdentical;
  190.  
  191. switch ( type ) {
  192. case 'flag':
  193. /*
  194. * Test for Transgender flag compatibility. Added in Unicode 13.
  195. *
  196. * To test for support, we try to render it, and compare the rendering to how it would look if
  197. * the browser doesn't render it correctly (white flag emoji + transgender symbol).
  198. */
  199. isIdentical = emojiSetsRenderIdentically(
  200. context,
  201. '\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence
  202. '\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space
  203. );
  204.  
  205. if ( isIdentical ) {
  206. return false;
  207. }
  208.  
  209. /*
  210. * Test for UN flag compatibility. This is the least supported of the letter locale flags,
  211. * so gives us an easy test for full support.
  212. *
  213. * To test for support, we try to render it, and compare the rendering to how it would look if
  214. * the browser doesn't render it correctly ([U] + [N]).
  215. */
  216. isIdentical = emojiSetsRenderIdentically(
  217. context,
  218. '\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points
  219. '\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space
  220. );
  221.  
  222. if ( isIdentical ) {
  223. return false;
  224. }
  225.  
  226. /*
  227. * Test for English flag compatibility. England is a country in the United Kingdom, it
  228. * does not have a two letter locale code but rather a five letter sub-division code.
  229. *
  230. * To test for support, we try to render it, and compare the rendering to how it would look if
  231. * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]).
  232. */
  233. isIdentical = emojiSetsRenderIdentically(
  234. context,
  235. // as the flag sequence
  236. '\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F',
  237. // with each code point separated by a zero-width space
  238. '\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F'
  239. );
  240.  
  241. return ! isIdentical;
  242. case 'emoji':
  243. /*
  244. * Four and twenty blackbirds baked in a pie.
  245. *
  246. * To test for Emoji 15.0 support, try to render a new emoji: Blackbird.
  247. *
  248. * The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square.,
  249. *
  250. * 0x1F426 (\uD83D\uDC26) == Bird
  251. * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or
  252. * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji.
  253. * 0x2B1B == Large Black Square
  254. *
  255. * When updating this test for future Emoji releases, ensure that individual emoji that make up the
  256. * sequence come from older emoji standards.
  257. */
  258. isIdentical = emojiSetsRenderIdentically(
  259. context,
  260. '\uD83D\uDC26\u200D\u2B1B', // as the zero-width joiner sequence
  261. '\uD83D\uDC26\u200B\u2B1B' // separated by a zero-width space
  262. );
  263.  
  264. return ! isIdentical;
  265. }
  266.  
  267. return false;
  268. }
  269.  
  270. /**
  271. * Checks emoji support tests.
  272. *
  273. * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
  274. * scope. Everything must be passed by parameters.
  275. *
  276. * @since 6.3.0
  277. *
  278. * @private
  279. *
  280. * @param {string[]} tests Tests.
  281. * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification.
  282. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification.
  283. *
  284. * @return {SupportTests} Support tests.
  285. */
  286. function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) {
  287. var canvas;
  288. if (
  289. typeof WorkerGlobalScope !== 'undefined' &&
  290. self instanceof WorkerGlobalScope
  291. ) {
  292. canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement.
  293. } else {
  294. canvas = document.createElement( 'canvas' );
  295. }
  296.  
  297. var context = canvas.getContext( '2d', { willReadFrequently: true } );
  298.  
  299. /*
  300. * Chrome on OS X added native emoji rendering in M41. Unfortunately,
  301. * it doesn't work when the font is bolder than 500 weight. So, we
  302. * check for bold rendering support to avoid invisible emoji in Chrome.
  303. */
  304. context.textBaseline = 'top';
  305. context.font = '600 32px Arial';
  306.  
  307. var supports = {};
  308. tests.forEach( function ( test ) {
  309. supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically );
  310. } );
  311. return supports;
  312. }
  313.  
  314. /**
  315. * Adds a script to the head of the document.
  316. *
  317. * @ignore
  318. *
  319. * @since 4.2.0
  320. *
  321. * @param {string} src The url where the script is located.
  322. *
  323. * @return {void}
  324. */
  325. function addScript( src ) {
  326. var script = document.createElement( 'script' );
  327. script.src = src;
  328. script.defer = true;
  329. document.head.appendChild( script );
  330. }
  331.  
  332. settings.supports = {
  333. everything: true,
  334. everythingExceptFlag: true
  335. };
  336.  
  337. // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired.
  338. var domReadyPromise = new Promise( function ( resolve ) {
  339. document.addEventListener( 'DOMContentLoaded', resolve, {
  340. once: true
  341. } );
  342. } );
  343.  
  344. // Obtain the emoji support from the browser, asynchronously when possible.
  345. new Promise( function ( resolve ) {
  346. var supportTests = getSessionSupportTests();
  347. if ( supportTests ) {
  348. resolve( supportTests );
  349. return;
  350. }
  351.  
  352. if ( supportsWorkerOffloading() ) {
  353. try {
  354. // Note that the functions are being passed as arguments due to minification.
  355. var workerScript =
  356. 'postMessage(' +
  357. testEmojiSupports.toString() +
  358. '(' +
  359. [
  360. JSON.stringify( tests ),
  361. browserSupportsEmoji.toString(),
  362. emojiSetsRenderIdentically.toString()
  363. ].join( ',' ) +
  364. '));';
  365. var blob = new Blob( [ workerScript ], {
  366. type: 'text/javascript'
  367. } );
  368. var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } );
  369. worker.onmessage = function ( event ) {
  370. supportTests = event.data;
  371. setSessionSupportTests( supportTests );
  372. worker.terminate();
  373. resolve( supportTests );
  374. };
  375. return;
  376. } catch ( e ) {}
  377. }
  378.  
  379. supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically );
  380. setSessionSupportTests( supportTests );
  381. resolve( supportTests );
  382. } )
  383. // Once the browser emoji support has been obtained from the session, finalize the settings.
  384. .then( function ( supportTests ) {
  385. /*
  386. * Tests the browser support for flag emojis and other emojis, and adjusts the
  387. * support settings accordingly.
  388. */
  389. for ( var test in supportTests ) {
  390. settings.supports[ test ] = supportTests[ test ];
  391.  
  392. settings.supports.everything =
  393. settings.supports.everything && settings.supports[ test ];
  394.  
  395. if ( 'flag' !== test ) {
  396. settings.supports.everythingExceptFlag =
  397. settings.supports.everythingExceptFlag &&
  398. settings.supports[ test ];
  399. }
  400. }
  401.  
  402. settings.supports.everythingExceptFlag =
  403. settings.supports.everythingExceptFlag &&
  404. ! settings.supports.flag;
  405.  
  406. // Sets DOMReady to false and assigns a ready function to settings.
  407. settings.DOMReady = false;
  408. settings.readyCallback = function () {
  409. settings.DOMReady = true;
  410. };
  411. } )
  412. .then( function () {
  413. return domReadyPromise;
  414. } )
  415. .then( function () {
  416. // When the browser can not render everything we need to load a polyfill.
  417. if ( ! settings.supports.everything ) {
  418. settings.readyCallback();
  419.  
  420. var src = settings.source || {};
  421.  
  422. if ( src.concatemoji ) {
  423. addScript( src.concatemoji );
  424. } else if ( src.wpemoji && src.twemoji ) {
  425. addScript( src.twemoji );
  426. addScript( src.wpemoji );
  427. }
  428. }
  429. } );
  430. } )( window, document, window._wpemojiSettings );
  431.  
  432. /* ]]> */
  433. </script>
  434. <style id='wp-emoji-styles-inline-css' type='text/css'>
  435.  
  436. img.wp-smiley, img.emoji {
  437. display: inline !important;
  438. border: none !important;
  439. box-shadow: none !important;
  440. height: 1em !important;
  441. width: 1em !important;
  442. margin: 0 0.07em !important;
  443. vertical-align: -0.1em !important;
  444. background: none !important;
  445. padding: 0 !important;
  446. }
  447. </style>
  448. <link rel='stylesheet' id='wp-block-library-css' href='https://resinboundgravel.uk/wp-includes/css/dist/block-library/style.css?ver=6.5.2' type='text/css' media='all' />
  449. <style id='classic-theme-styles-inline-css' type='text/css'>
  450. /**
  451. * These rules are needed for backwards compatibility.
  452. * They should match the button element rules in the base theme.json file.
  453. */
  454. .wp-block-button__link {
  455. color: #ffffff;
  456. background-color: #32373c;
  457. border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */
  458.  
  459. /* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */
  460. box-shadow: none;
  461. text-decoration: none;
  462.  
  463. /* The extra 2px are added to size solids the same as the outline versions.*/
  464. padding: calc(0.667em + 2px) calc(1.333em + 2px);
  465.  
  466. font-size: 1.125em;
  467. }
  468.  
  469. .wp-block-file__button {
  470. background: #32373c;
  471. color: #ffffff;
  472. text-decoration: none;
  473. }
  474.  
  475. </style>
  476. <style id='global-styles-inline-css' type='text/css'>
  477. body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}body .is-layout-grid{display: grid;}body .is-layout-grid > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
  478. .wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}
  479. :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
  480. :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
  481. .wp-block-pullquote{font-size: 1.5em;line-height: 1.6;}
  482. </style>
  483. <link rel='stylesheet' id='style-name-css' href='https://resinboundgravel.uk/wp-content/plugins/az-lists/az.css?ver=6.5.2' type='text/css' media='all' />
  484. <link rel='stylesheet' id='ez-toc-css' href='https://resinboundgravel.uk/wp-content/plugins/easy-table-of-contents/assets/css/screen.css?ver=2.0.65' type='text/css' media='all' />
  485. <style id='ez-toc-inline-css' type='text/css'>
  486. div#ez-toc-container .ez-toc-title {font-size: 120%;}div#ez-toc-container .ez-toc-title {font-weight: 500;}div#ez-toc-container ul li {font-size: 95%;}div#ez-toc-container ul li {font-weight: 500;}div#ez-toc-container nav ul ul li {font-size: 90%;}
  487. .ez-toc-container-direction {direction: ltr;}.ez-toc-counter ul{counter-reset: item ;}.ez-toc-counter nav ul li a::before {content: counters(item, ".", decimal) ". ";display: inline-block;counter-increment: item;flex-grow: 0;flex-shrink: 0;margin-right: .2em; float: left; }.ez-toc-widget-direction {direction: ltr;}.ez-toc-widget-container ul{counter-reset: item ;}.ez-toc-widget-container nav ul li a::before {content: counters(item, ".", decimal) ". ";display: inline-block;counter-increment: item;flex-grow: 0;flex-shrink: 0;margin-right: .2em; float: left; }
  488. </style>
  489. <script type="text/javascript" src="https://resinboundgravel.uk/wp-includes/js/jquery/jquery.js?ver=3.7.1" id="jquery-core-js"></script>
  490. <script type="text/javascript" src="https://resinboundgravel.uk/wp-includes/js/jquery/jquery-migrate.js?ver=3.4.1" id="jquery-migrate-js"></script>
  491. <link rel="https://api.w.org/" href="https://resinboundgravel.uk/wp-json/" /><link rel="alternate" type="application/json" href="https://resinboundgravel.uk/wp-json/wp/v2/pages/73" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://resinboundgravel.uk/xmlrpc.php?rsd" />
  492. <meta name="generator" content="WordPress 6.5.2" />
  493. <link rel="alternate" type="application/json+oembed" href="https://resinboundgravel.uk/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fresinboundgravel.uk%2F" />
  494. <link rel="alternate" type="text/xml+oembed" href="https://resinboundgravel.uk/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fresinboundgravel.uk%2F&#038;format=xml" />
  495. <link rel="canonical" href="https://resinboundgravel.uk/" /><meta name="description" content="We are a Resin Bound Gravel company who can offer you the best rates on your project. Voted the Best Company for resin bound gravel in the UK." /><meta name="keywords" content="resin bound gravel, resin bound gravel installers, resin bound, resin bound gravel surfacing, resin bound stone" /><meta name="geo.placename" content="Barking" /><meta name="geo.position" content="51.53817; 0.07892" /><meta name="geo.county" content="Greater London" /><meta name="geo.postcode" content="IG11 8" /><meta name="geo.region" content="London" /><meta name="geo.country" content="greater-london" /><meta property="business:contact_data:locality" content="Greater London" /><meta property="business:contact_data:zip" content="IG11 8" /><meta property="place:location:latitude" content="51.53817" /><meta property="place:location:longitude" content="0.07892" /><meta property="business:contact_data:country_name" content="greater-london" /><meta property="og:url" content="https://resinboundgravel.uk/" /><meta property="og:title" content="Resin Bound Gravel | Best Bound Gravel Company UK" /><meta property="og:description" content="We are a Resin Bound Gravel company who can offer you the best rates on your project. Voted the Best Company for resin bound gravel in the UK." /><meta property="og:type" content="business.business" /><meta name="twitter:card" content="summary_large_image" /><meta name="twitter:site" content="Resin Bound Gravel" /><meta name="twitter:creator" content="Resin Bound Gravel" /><meta name="twitter:title" content="Resin Bound Gravel | Best Bound Gravel Company UK" /><meta name="twitter:description" content="We are a Resin Bound Gravel company who can offer you the best rates on your project. Voted the Best Company for resin bound gravel in the UK." /><link rel="icon" href="https://resinboundgravel.uk/wp-content/uploads/Resin-Bound-Gravel-icon-150x150.png" sizes="32x32" />
  496. <link rel="icon" href="https://resinboundgravel.uk/wp-content/uploads/Resin-Bound-Gravel-icon-300x300.png" sizes="192x192" />
  497. <link rel="apple-touch-icon" href="https://resinboundgravel.uk/wp-content/uploads/Resin-Bound-Gravel-icon-300x300.png" />
  498. <meta name="msapplication-TileImage" content="https://resinboundgravel.uk/wp-content/uploads/Resin-Bound-Gravel-icon-300x300.png" />
  499. <link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
  500. <script src="https://cdnjs.cloudflare.com/ajax/libs/alpinejs/2.7.3/alpine.js" id="alpine"></script>
  501. <link href="/wp-content/themes/dash-theme/style.css" rel="stylesheet">
  502. <script src="/wp-content/themes/dash-theme/script.js" id="custom-script"></script>
  503. </head>
  504.  
  505.  
  506. <div class="w-full text-white bg-gray-800 sticky top-0 z-10">
  507.  <div x-data="{ open: false }" class="flex flex-col max-w-screen-xl px-4 mx-auto md:items-center md:justify-between md:flex-row md:px-6 lg:px-8">
  508.    <div class="p-4 flex flex-row items-center justify-between">
  509.      <a href="/" class="text-lg tracking-widest text-gray-900 uppercase rounded-lg focus:outline-none focus:shadow-outline"><img class="h-6 w-auto" height="217" width="24" src="https://resinboundgravel.uk/wp-content/uploads/Resin-Bound-Gravel.png"></a>
  510.      <button class="md:hidden rounded-lg focus:outline-none focus:shadow-outline" @click="open = !open">
  511.        <svg fill="currentColor" viewBox="0 0 20 20" class="w-6 h-6">
  512.          <path x-show="!open" fill-rule="evenodd" d="M3 5a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM3 10a1 1 0 011-1h12a1 1 0 110 2H4a1 1 0 01-1-1zM9 15a1 1 0 011-1h6a1 1 0 110 2h-6a1 1 0 01-1-1z" clip-rule="evenodd"></path>
  513.          <path x-show="open" fill-rule="evenodd" d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z" clip-rule="evenodd" style="display: none;"></path>
  514.        </svg>
  515.      </button>
  516.    </div>
  517.  
  518.  
  519.  
  520.  <nav :class="{'flex': open, 'hidden': !open}" class="flex-col flex-grow pb-4 md:pb-0 hidden md:flex md:justify-end md:flex-row">
  521.              <a href="#contact" class="px-4 py-2 mt-2 bg-blue-600 text-white text-sm rounded-lg md:ml-4 hover:bg-blue-700" href="/contact-us/">Get In Touch</a>  
  522.  </nav>
  523.  
  524.  
  525.  
  526.  
  527.  
  528.  </div>
  529. </div>
  530.  <div class="bg-white">
  531.  <div class="max-w-7xl mx-auto py-3 px-2 sm:px-6 lg:px-8">
  532.    <div class="grid grid-cols-2 lg:grid-cols-4 text-xs">
  533.      <div class='col-span-1 flex justify-center'>
  534.      <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="mr-2 h-4 w-4 text-gray-800">
  535.      <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"></path>
  536.      </svg>
  537.        <p>20+ Years Experience</p>
  538.      </div>
  539.  <div class='col-span-1 flex justify-center'>
  540.      <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="mr-2 h-4 w-4 text-gray-800">
  541.      <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"></path>
  542.      </svg>
  543.        <p>Specialist Resin Bound Gravel</p>
  544.      </div>
  545.  <div class='col-span-1 justify-center hidden md:flex'>
  546.      <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="mr-2 h-4 w-4 text-gray-800">
  547.      <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"></path>
  548.      </svg>
  549.        <p>Best Resin Bound Gravel Prices</p>
  550.      </div>
  551.  <div class='col-span-1 justify-center hidden md:flex'>
  552.      <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="mr-2 h-4 w-4 text-gray-800">
  553.      <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"></path>
  554.      </svg>
  555.        <p>Resin Bound Gravel Nationwide</p>
  556.      </div>
  557.    </div>
  558.  </div>
  559. </div>
  560.  
  561.  
  562.  
  563. <!--hero Section-->
  564. <div class="relative">
  565.   <div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
  566.      <div class="relative shadow-xl sm:overflow-hidden">
  567.         <div class="absolute inset-0">
  568.             <img class="h-full w-full object-cover" src="https://resinboundgravel.uk/wp-content/uploads/resin-bound-gravel.jpg">
  569.            <div class="absolute inset-0 bg-gray-400 mix-blend-multiply"></div>
  570.         </div>
  571.         <div class="relative px-4 py-16 sm:px-6 sm:py-24 lg:py-16 lg:px-8">
  572.            <h1 class="text-center text-4xl font-extrabold tracking-tight sm:text-5xl lg:text-6xl">
  573.               <span class="block text-white">Resin Bound Gravel</span>
  574.            </h1>
  575.            <p class="mt-6 max-w-lg mx-auto text-center text-xl text-white sm:max-w-3xl">
  576.               Enquire Today For A Free No Obligation Quote
  577.            </p>
  578.            <div class="mt-10 max-w-sm mx-auto sm:max-w-none sm:flex sm:justify-center">
  579.                  <a href="#contact" class="border-white flex items-center justify-center px-4 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-blue-700 hover:bg-opacity-70 sm:px-8">
  580.                  Get A Quote
  581.                  </a>
  582.            </div>
  583.         </div>
  584.      </div>
  585.   </div>
  586. </div>
  587.  
  588. <!--content -->
  589. <div class="mbc max-w-7xl mx-auto px-8 mt-2 text-gray-700 mx-auto">
  590.  
  591. <p><strong>With over 20 years of experience, our specialist Resin Bound Gravel contractors have installed over 2 million metres of surfacing nationwide.</strong></p>
  592. <p><strong>Our installers based throughout the UK can offer competitive prices and in May 2024 are able to get a quote to you as soon as possible. </strong></p>
  593. <p><style>.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }</style></p>
  594. <div class="embed-container"><iframe src="https://www.youtube.com/embed//eO4AeXgqZfM" frameborder="0" allowfullscreen="allowfullscreen"></iframe></div>
  595. <p>In our many years of experience, we have built a very reputable brand and have been able to create a large client base across the UK that would highly recommend us as a company!</p>
  596. <div class="blk-cta"><a class="blk-cta__lnk red " href="#contact">Get In Touch Today</a></div>
  597. <div id="ez-toc-container" class="ez-toc-v2_0_65 counter-hierarchy ez-toc-counter ez-toc-grey ez-toc-container-direction">
  598. <div class="ez-toc-title-container">
  599. <p class="ez-toc-title " >Table of Contents</p>
  600. <span class="ez-toc-title-toggle"><a href="#" class="ez-toc-pull-right ez-toc-btn ez-toc-btn-xs ez-toc-btn-default ez-toc-toggle" aria-label="Toggle Table of Content"><span class="ez-toc-js-icon-con"><span class=""><span class="eztoc-hide" style="display:none;">Toggle</span><span class="ez-toc-icon-toggle-span"><svg style="fill: #999;color:#999" xmlns="http://www.w3.org/2000/svg" class="list-377408" width="20px" height="20px" viewBox="0 0 24 24" fill="none"><path d="M6 6H4v2h2V6zm14 0H8v2h12V6zM4 11h2v2H4v-2zm16 0H8v2h12v-2zM4 16h2v2H4v-2zm16 0H8v2h12v-2z" fill="currentColor"></path></svg><svg style="fill: #999;color:#999" class="arrow-unsorted-368013" xmlns="http://www.w3.org/2000/svg" width="10px" height="10px" viewBox="0 0 24 24" version="1.2" baseProfile="tiny"><path d="M18.2 9.3l-6.2-6.3-6.2 6.3c-.2.2-.3.4-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7zM5.8 14.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.5-.3.7s.1.5.3.7z"/></svg></span></span></span></a></span></div>
  601. <nav><ul class='ez-toc-list ez-toc-list-level-1 eztoc-toggle-hide-by-default' ><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-1" href="#Why_choose_us" title="Why choose us?">Why choose us?</a></li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-2" href="#Benefits_of_Resin_Bound_Gravel" title="Benefits of Resin Bound Gravel ">Benefits of Resin Bound Gravel </a></li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-3" href="#How_Long_Does_Resin_Bound_Gravel_Last" title="How Long Does Resin Bound Gravel Last?">How Long Does Resin Bound Gravel Last?</a></li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-4" href="#Costs_of_Resin_Bound_Gravel" title="Costs of Resin Bound Gravel ">Costs of Resin Bound Gravel </a></li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-5" href="#Can_Resin_Bound_be_Laid_on_Concrete" title="Can Resin Bound be Laid on Concrete?">Can Resin Bound be Laid on Concrete?</a></li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-6" href="#How_Easy_is_Resin_Bound_Gravel_to_maintain" title="How Easy is Resin Bound Gravel to maintain? ">How Easy is Resin Bound Gravel to maintain? </a><ul class='ez-toc-list-level-3' ><li class='ez-toc-heading-level-3'><a class="ez-toc-link ez-toc-heading-7" href="#What_About_Snow_or_ice" title="What About Snow or ice? ">What About Snow or ice? </a></li></ul></li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-8" href="#Summary" title="Summary ">Summary </a></li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-9" href="#Find_More_Info" title="Find More Info">Find More Info</a></li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-10" href="#What_Others_Say_About_Our_Services" title="What Others Say About Our Services">What Others Say About Our Services</a></li></ul></nav></div>
  602.  
  603. <h2><span class="ez-toc-section" id="Why_choose_us"></span>Why choose us?<span class="ez-toc-section-end"></span></h2>
  604. <p>We offer a number of great Resin Bound Gravel services and are more than happy in assisting you on anything you need more information on. This could include, pricing information, specifications or dimensions. Any sort of questions you may have we will be able to answer to the best of our ability. </p>
  605. <p>Resin-bound gravel is available in many different natural aggregates in May 2024. The porous surfacing style is made by mixing the selected stone with a specialised resin and applying it to create a smooth and appealing finish.</p>
  606. <p>The specification of resin-bound stone paving will require little servicing work as well as being immune to cracking.</p>
  607. <div x-data="{ imgModal : false, imgModalSrc : '', imgModalDesc : '' }"><template @img-modal.window="imgModal = true; imgModalSrc = $event.detail.imgModalSrc; imgModalDesc = $event.detail.imgModalDesc;" x-if="imgModal"><div x-transition:enter="transition ease-out duration-300" x-transition:enter-start="opacity-0 transform scale-90" x-transition:enter-end="opacity-100 transform scale-100" x-transition:leave="transition ease-in duration-300" x-transition:leave-start="opacity-100 transform scale-100" x-transition:leave-end="opacity-0 transform scale-90" x-on:click.away="imgModalSrc = ''" class="p-2 fixed w-full h-100 inset-0 z-50 overflow-hidden flex justify-center items-center bg-black bg-opacity-75"><div @click.away="imgModal = ''" class="flex flex-col max-w-3xl max-h-full overflow-auto"><div class="z-50"><button @click="imgModal = ''" class="float-right pt-2 pr-2 outline-none focus:outline-none"><svg class="fill-current text-white " xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><path d="M14.53 4.53l-1.06-1.06L9 7.94 4.53 3.47 3.47 4.53 7.94 9l-4.47 4.47 1.06 1.06L9 10.06l4.47 4.47 1.06-1.06L10.06 9z"></path></svg></button></div><div class="p-2"><img :alt="imgModalSrc" class="object-contain h-1/2-screen" :src="imgModalSrc"><p x-text="imgModalDesc" class="text-center text-white"></p></div></div></div></template></div><div x-data="{}" class="grid mt-8 mb-8 grid-cols-2 md:grid-cols-4 gap-4"><div class="shadow"><a @click="$dispatch('img-modal', {  imgModalSrc: 'https://resinboundgravel.uk/wp-content/uploads/Resin-Bonded-Stone-Surfaces-26-1.jpg' })" class="cursor-pointer"><img decoding="async" alt="Placeholder" class="object-fit w-full" src="https://resinboundgravel.uk/wp-content/uploads/Resin-Bonded-Stone-Surfaces-26-1.jpg"></a></div><div class="shadow"><a @click="$dispatch('img-modal', {  imgModalSrc: 'https://resinboundgravel.uk/wp-content/uploads/Resin-Bonded-Stone-Surfaces-29-1.jpg' })" class="cursor-pointer"><img decoding="async" alt="Placeholder" class="object-fit w-full" src="https://resinboundgravel.uk/wp-content/uploads/Resin-Bonded-Stone-Surfaces-29-1.jpg"></a></div><div class="shadow"><a @click="$dispatch('img-modal', {  imgModalSrc: 'https://resinboundgravel.uk/wp-content/uploads/Resin-Bonded-Stone-Surfaces-31-1.jpg' })" class="cursor-pointer"><img decoding="async" alt="Placeholder" class="object-fit w-full" src="https://resinboundgravel.uk/wp-content/uploads/Resin-Bonded-Stone-Surfaces-31-1.jpg"></a></div><div class="shadow"><a @click="$dispatch('img-modal', {  imgModalSrc: 'https://resinboundgravel.uk/wp-content/uploads/Resin-Bonded-Stone-Surfaces-28-1.jpg' })" class="cursor-pointer"><img decoding="async" alt="Placeholder" class="object-fit w-full" src="https://resinboundgravel.uk/wp-content/uploads/Resin-Bonded-Stone-Surfaces-28-1.jpg"></a></div></div>
  608. <div class="blk-cta"><a class="blk-cta__lnk green " href="#contact">Receive Best Online Quotes Available</a></div>
  609. <h2><span class="ez-toc-section" id="Benefits_of_Resin_Bound_Gravel"></span>Benefits of Resin Bound Gravel <span class="ez-toc-section-end"></span></h2>
  610. <p>There are many benefits to resin-bound paving instalments. A resin-bound paving instalment would be done using a macadam sub-base because this provides the best hard wearing, permeable properties. Resin-bound stone floors may be used for a number of outdoor areas such as paths, driveways and general public attractions.</p>
  611. <p><img decoding="async" class="alignnone wp-image-169 size-full" src="https://resinboundgravel.uk/wp-content/uploads/5-benefits-that-resin-bound-gravel-CAN-PROVIDE-YOU.png" alt="5 benefits that resin bound gravel CAN PROVIDE YOU!" width="1200" height="400" srcset="https://resinboundgravel.uk/wp-content/uploads/5-benefits-that-resin-bound-gravel-CAN-PROVIDE-YOU.png 1200w, https://resinboundgravel.uk/wp-content/uploads/5-benefits-that-resin-bound-gravel-CAN-PROVIDE-YOU-300x100.png 300w, https://resinboundgravel.uk/wp-content/uploads/5-benefits-that-resin-bound-gravel-CAN-PROVIDE-YOU-1024x341.png 1024w, https://resinboundgravel.uk/wp-content/uploads/5-benefits-that-resin-bound-gravel-CAN-PROVIDE-YOU-768x256.png 768w" sizes="(max-width: 1200px) 100vw, 1200px" /></p>
  612. <p>This means that it has more benefits than you might think these include: </p>
  613. <ul>
  614. <li>Wheelchairs and pushchairs may move easily on the surface</li>
  615. <li>Smooth structure </li>
  616. <li>Lower cost to install </li>
  617. <li>Easy to maintain </li>
  618. <li>Anti-slip finish</li>
  619. </ul>
  620. <p> In order to keep the gravel flooring appearing its very best, regular servicing is required to be done on the area.</p>
  621. <h2><span class="ez-toc-section" id="How_Long_Does_Resin_Bound_Gravel_Last"></span>How Long Does Resin Bound Gravel Last?<span class="ez-toc-section-end"></span></h2>
  622. <p>Resin Bound Gravel can last between 10 to 30 years. </p>
  623. <p>Most guarantees cover up to 20 years, however, if properly maintained, your resin-bound gravel can last you for much longer than that. </p>
  624. <p><strong>Keep reading to learn more about how to maintain resin bound gravel</strong>. </p>
  625. <h2><span class="ez-toc-section" id="Costs_of_Resin_Bound_Gravel"></span>Costs of Resin Bound Gravel <span class="ez-toc-section-end"></span></h2>
  626. <p>Resin Bound Gravel can vary in cost and can be £50 per SM or £65 per SM this is dependent on things such as:</p>
  627. <ul>
  628. <li>The size of the area </li>
  629. <li>The cost of the materials</li>
  630. <li>Labour costs </li>
  631. <li>Prep work costs (digging, installing)</li>
  632. </ul>
  633. <p>If you would like a more in-depth quote get in touch with us today!</p>
  634. <h2 id="exacc_cYhzYs7WKsmDhbIPqNeDgAw3" class="iDjcJe IX9Lgd wwB5gf"><span class="ez-toc-section" id="Can_Resin_Bound_be_Laid_on_Concrete"></span>Can Resin Bound be Laid on Concrete?<span class="ez-toc-section-end"></span></h2>
  635. <p>Resin-bound surfacing can be laid directly onto concrete or it can be poured onto a permeable asphalt surfacing. </p>
  636. <div class="YsGUOb">Certain subbases are not suitable for resin-bound to be laid onto, these include:</div>
  637. <ul>
  638. <li>Grass</li>
  639. <li>Paving stones</li>
  640. <li>Soil</li>
  641. </ul>
  642. <p>Our advisors have a wealth of knowledge surrounding resin bound gravel installation, so get in touch for any questions you might have. </p>
  643. <h2><span class="ez-toc-section" id="How_Easy_is_Resin_Bound_Gravel_to_maintain"></span>How Easy is Resin Bound Gravel to maintain? <span class="ez-toc-section-end"></span></h2>
  644. <p>If an upkeep system is developed, the lifespan of your floor will immediately improve, making the resin-bound surface safe. It’s critical you never wait for the surface to get dangerous before you begin the upkeep treatment since this can make the surface unsafe.</p>
  645. <p>In order to keep the resin-bound gravel surfacing nice and clean, we advise regular servicing to remove leaves or grime.</p>
  646. <p><img loading="lazy" decoding="async" class="alignnone wp-image-168 size-full" src="https://resinboundgravel.uk/wp-content/uploads/How-Easy-is-Resin-Bound-Gravel-to-maintain_-.png" alt="How Easy is Resin Bound Gravel to maintain_" width="1200" height="400" srcset="https://resinboundgravel.uk/wp-content/uploads/How-Easy-is-Resin-Bound-Gravel-to-maintain_-.png 1200w, https://resinboundgravel.uk/wp-content/uploads/How-Easy-is-Resin-Bound-Gravel-to-maintain_--300x100.png 300w, https://resinboundgravel.uk/wp-content/uploads/How-Easy-is-Resin-Bound-Gravel-to-maintain_--1024x341.png 1024w, https://resinboundgravel.uk/wp-content/uploads/How-Easy-is-Resin-Bound-Gravel-to-maintain_--768x256.png 768w" sizes="(max-width: 1200px) 100vw, 1200px" /></p>
  647. <p>Any dirt that gets stuck can affect the permeability making the system no more Sustainable Urban Drainage Systems (SuDS) certified. To remove any type of weeds on the gravel surface, a contamination killer can be applied however it’s essential you don’t use something oil based as this can damage the surfaces.</p>
  648. <p>A mild pressure spray is enough to avoid the expansion of contaminants. Tepid to warm water can be applied with cleansing soap to clean the resin-bound stone floor surfaces, but boiling hot liquid ought not to be applied as can easily cause damage.</p>
  649. <h3><span class="ez-toc-section" id="What_About_Snow_or_ice"></span>What About Snow or ice? <span class="ez-toc-section-end"></span></h3>
  650. <p>To get rid of snowfall or ice from your resin-bound aggregate surface, we strongly recommend having a rubber remover or light bristled brush to protect against any harm to the natural stone.</p>
  651. <p>The resin-bound natural stone is merged on-site with natural stone aggregate and polyurethane binder, this is so that the layout can be positioned in any sort of size or shape</p>
  652. <p>The stone paving is ordinarily installed onto a macadam or asphalt sub-foundation for optimum steadiness and durability.</p>
  653. <h2><span class="ez-toc-section" id="Summary"></span>Summary <span class="ez-toc-section-end"></span></h2>
  654. <p>If you are looking for a reliable resin-bound installation company, you&#8217;ve come to the right place. At Resin Bound Gravel we can assist you with the best prices and specifications in the UK, whilst also making sure you get the best installation. </p>
  655. <p>Want to get in touch with us? Just fill out the form below with your details and we will get back to you as soon as possible!</p>
  656. <p>We look forward to hearing from you about all of your Resin Bound Gravel needs! </p>
  657. <h2><span class="ez-toc-section" id="Find_More_Info"></span>Find More Info<span class="ez-toc-section-end"></span></h2>
  658. <p>Make sure you contact us today for a number of great Resin Bound Gravel services.</p>
  659. <div class="blk-cta"><a class="blk-cta__lnk red " href="#contact">Receive Top Online Quotes Here</a></div>
  660. <div class="p-quotes-section has-wrap text-center"><h2 class="p-quotes-title u-txt-c"><span class="ez-toc-section" id="What_Others_Say_About_Our_Services"></span>What Others Say About Our Services<span class="ez-toc-section-end"></span></h2> <div class="p-quotes"><div class="p-quotes__item"><div class="bg-gray-800 rounded-md text-white p-4 p-crd u-bg-lig u-p-x6 u-br-rd"><div class="p-quotes-rating"><svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" height="24" viewBox="0 0 24 24" width="24"><g><path d="M0,0h24v24H0V0z" fill="none"/><path d="M0,0h24v24H0V0z" fill="none"/></g><g><g><polygon opacity=".3" points="12,15.4 8.24,17.67 9.24,13.39 5.92,10.51 10.3,10.13 12,6.1 13.71,10.14 18.09,10.52 14.77,13.4 15.77,17.68"/><path d="M22,9.24l-7.19-0.62L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27L18.18,21l-1.63-7.03L22,9.24z M12,15.4l-3.76,2.27 l1-4.28l-3.32-2.88l4.38-0.38L12,6.1l1.71,4.04l4.38,0.38l-3.32,2.88l1,4.28L12,15.4z"/></g></g></svg><svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" height="24" viewBox="0 0 24 24" width="24"><g><path d="M0,0h24v24H0V0z" fill="none"/><path d="M0,0h24v24H0V0z" fill="none"/></g><g><g><polygon opacity=".3" points="12,15.4 8.24,17.67 9.24,13.39 5.92,10.51 10.3,10.13 12,6.1 13.71,10.14 18.09,10.52 14.77,13.4 15.77,17.68"/><path d="M22,9.24l-7.19-0.62L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27L18.18,21l-1.63-7.03L22,9.24z M12,15.4l-3.76,2.27 l1-4.28l-3.32-2.88l4.38-0.38L12,6.1l1.71,4.04l4.38,0.38l-3.32,2.88l1,4.28L12,15.4z"/></g></g></svg><svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" height="24" viewBox="0 0 24 24" width="24"><g><path d="M0,0h24v24H0V0z" fill="none"/><path d="M0,0h24v24H0V0z" fill="none"/></g><g><g><polygon opacity=".3" points="12,15.4 8.24,17.67 9.24,13.39 5.92,10.51 10.3,10.13 12,6.1 13.71,10.14 18.09,10.52 14.77,13.4 15.77,17.68"/><path d="M22,9.24l-7.19-0.62L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27L18.18,21l-1.63-7.03L22,9.24z M12,15.4l-3.76,2.27 l1-4.28l-3.32-2.88l4.38-0.38L12,6.1l1.71,4.04l4.38,0.38l-3.32,2.88l1,4.28L12,15.4z"/></g></g></svg><svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" height="24" viewBox="0 0 24 24" width="24"><g><path d="M0,0h24v24H0V0z" fill="none"/><path d="M0,0h24v24H0V0z" fill="none"/></g><g><g><polygon opacity=".3" points="12,15.4 8.24,17.67 9.24,13.39 5.92,10.51 10.3,10.13 12,6.1 13.71,10.14 18.09,10.52 14.77,13.4 15.77,17.68"/><path d="M22,9.24l-7.19-0.62L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27L18.18,21l-1.63-7.03L22,9.24z M12,15.4l-3.76,2.27 l1-4.28l-3.32-2.88l4.38-0.38L12,6.1l1.71,4.04l4.38,0.38l-3.32,2.88l1,4.28L12,15.4z"/></g></g></svg><svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" height="24" viewBox="0 0 24 24" width="24"><g><path d="M0,0h24v24H0V0z" fill="none"/><path d="M0,0h24v24H0V0z" fill="none"/></g><g><g><polygon opacity=".3" points="12,15.4 8.24,17.67 9.24,13.39 5.92,10.51 10.3,10.13 12,6.1 13.71,10.14 18.09,10.52 14.77,13.4 15.77,17.68"/><path d="M22,9.24l-7.19-0.62L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27L18.18,21l-1.63-7.03L22,9.24z M12,15.4l-3.76,2.27 l1-4.28l-3.32-2.88l4.38-0.38L12,6.1l1.71,4.04l4.38,0.38l-3.32,2.88l1,4.28L12,15.4z"/></g></g></svg></div> <p>We absolutely love the service provided. Their approach is really friendly but professional. We went out to five different companies and found Resin Bound Gravel to be value for money and their service was by far the best. Thank you for your really awesome work, we will definitely be returning!</p>
  661. <span class="p-quotes-info"><strong>Dylan Sharp</strong><br/>Greater London</span></div></div><div class="p-quotes__item"><div class="bg-gray-800 rounded-md text-white p-4 p-crd u-bg-lig u-p-x6 u-br-rd"><div class="p-quotes-rating"><svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" height="24" viewBox="0 0 24 24" width="24"><g><path d="M0,0h24v24H0V0z" fill="none"/><path d="M0,0h24v24H0V0z" fill="none"/></g><g><g><polygon opacity=".3" points="12,15.4 8.24,17.67 9.24,13.39 5.92,10.51 10.3,10.13 12,6.1 13.71,10.14 18.09,10.52 14.77,13.4 15.77,17.68"/><path d="M22,9.24l-7.19-0.62L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27L18.18,21l-1.63-7.03L22,9.24z M12,15.4l-3.76,2.27 l1-4.28l-3.32-2.88l4.38-0.38L12,6.1l1.71,4.04l4.38,0.38l-3.32,2.88l1,4.28L12,15.4z"/></g></g></svg><svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" height="24" viewBox="0 0 24 24" width="24"><g><path d="M0,0h24v24H0V0z" fill="none"/><path d="M0,0h24v24H0V0z" fill="none"/></g><g><g><polygon opacity=".3" points="12,15.4 8.24,17.67 9.24,13.39 5.92,10.51 10.3,10.13 12,6.1 13.71,10.14 18.09,10.52 14.77,13.4 15.77,17.68"/><path d="M22,9.24l-7.19-0.62L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27L18.18,21l-1.63-7.03L22,9.24z M12,15.4l-3.76,2.27 l1-4.28l-3.32-2.88l4.38-0.38L12,6.1l1.71,4.04l4.38,0.38l-3.32,2.88l1,4.28L12,15.4z"/></g></g></svg><svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" height="24" viewBox="0 0 24 24" width="24"><g><path d="M0,0h24v24H0V0z" fill="none"/><path d="M0,0h24v24H0V0z" fill="none"/></g><g><g><polygon opacity=".3" points="12,15.4 8.24,17.67 9.24,13.39 5.92,10.51 10.3,10.13 12,6.1 13.71,10.14 18.09,10.52 14.77,13.4 15.77,17.68"/><path d="M22,9.24l-7.19-0.62L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27L18.18,21l-1.63-7.03L22,9.24z M12,15.4l-3.76,2.27 l1-4.28l-3.32-2.88l4.38-0.38L12,6.1l1.71,4.04l4.38,0.38l-3.32,2.88l1,4.28L12,15.4z"/></g></g></svg><svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" height="24" viewBox="0 0 24 24" width="24"><g><path d="M0,0h24v24H0V0z" fill="none"/><path d="M0,0h24v24H0V0z" fill="none"/></g><g><g><polygon opacity=".3" points="12,15.4 8.24,17.67 9.24,13.39 5.92,10.51 10.3,10.13 12,6.1 13.71,10.14 18.09,10.52 14.77,13.4 15.77,17.68"/><path d="M22,9.24l-7.19-0.62L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27L18.18,21l-1.63-7.03L22,9.24z M12,15.4l-3.76,2.27 l1-4.28l-3.32-2.88l4.38-0.38L12,6.1l1.71,4.04l4.38,0.38l-3.32,2.88l1,4.28L12,15.4z"/></g></g></svg><svg xmlns="http://www.w3.org/2000/svg" enable-background="new 0 0 24 24" height="24" viewBox="0 0 24 24" width="24"><g><path d="M0,0h24v24H0V0z" fill="none"/><path d="M0,0h24v24H0V0z" fill="none"/></g><g><g><polygon opacity=".3" points="12,15.4 8.24,17.67 9.24,13.39 5.92,10.51 10.3,10.13 12,6.1 13.71,10.14 18.09,10.52 14.77,13.4 15.77,17.68"/><path d="M22,9.24l-7.19-0.62L12,2L9.19,8.63L2,9.24l5.46,4.73L5.82,21L12,17.27L18.18,21l-1.63-7.03L22,9.24z M12,15.4l-3.76,2.27 l1-4.28l-3.32-2.88l4.38-0.38L12,6.1l1.71,4.04l4.38,0.38l-3.32,2.88l1,4.28L12,15.4z"/></g></g></svg></div> <p>We have used Resin Bound Gravel for many years as they are certainly the best in the UK. The attention to detail and professional setup is what makes this company our go-to company for all our work. I highly recommend the team for the immense work - we highly recommend them!</p>
  662. <span class="p-quotes-info"><strong>Thomas Jenkins</strong><br/>Greater London</span></div></div></div></div>
  663. <p>For more information on Resin Bound Gravel, fill in the contact form below to receive a free quote today.</p>
  664. <p></p>
  665. <div class="blk-cta"><a class="blk-cta__lnk blue " href="#contact">Get A Free Quote</a></div>
  666. <!-- /wp:paragraph --></div>
  667.  
  668. <section id="sticky-footer" class="sticky opacity-0 bottom-0 bg-gray-800 pb-6 pl-2 pr-2 full-width shadow-2xl shad min-w-full mx-auto">
  669. <div class="p-bar__inr u-row has-wrap u-jc-ce max-w-sm mx-auto sm:max-w-none sm:flex sm:justify-center">
  670.            <a href="#contact" class="mt-2 border-white flex items-center justify-center px-4 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-white bg-blue-700 hover:bg-opacity-70 sm:px-8">
  671.                  Enquire Now
  672.            </a>
  673. </div>
  674. </section>
  675.  
  676. <div class="bg-blue-700 h-screen" id="contact">
  677.  <div class="max-w-2xl mx-auto text-center py-16 px-4 sm:py-20 sm:px-6 lg:px-8">
  678.    <div class="-m-4 text-3xl font-extrabold text-white sm:text-4xl">
  679.      <span class="block">Get In Touch With Our Team</span>
  680.   </div>
  681.    <p class="mt-4 text-lg leading-6 text-blue-200">We Aim To Reply To All Enquiries With-in 24-Hours</p>
  682.      <script>
  683. window.addEventListener("message", function (event) {
  684.    if (event.data.hasOwnProperty("FrameHeight")) {
  685.        document.getElementById("iframeID-187").style.height = event.data.FrameHeight + "px"
  686.    }
  687.    if (event.data.hasOwnProperty("RedirectURL")) {
  688.        window.location.href = event.data.RedirectURL;
  689.    }
  690. });
  691.  
  692. function setIframeHeight(ifrm) {
  693.    var height = ifrm.contentWindow.postMessage("FrameHeight", "*");
  694. }
  695. </script>
  696.  
  697. <iframe id="iframeID-187" onLoad="setIframeHeight(this)" scrolling="no" style="border:0px;width:100%;overflow:hidden;"
  698.        src="https://leadsimplify.net/fatrank/form/187"></iframe>
  699.  </div>
  700. </div>
  701.  
  702. <div class="link mt-4 mb-4">
  703.  <h2 class="text-center font-bold text-2xl mb-4">Areas We Cover</h2>
  704.   <ul><li><a href="https://resinboundgravel.uk/near-me/greater-london/">Greater London</a></li><li><a href="https://resinboundgravel.uk/near-me/essex/">Essex</a></li><li><a href="https://resinboundgravel.uk/near-me/hertfordshire/">Hertfordshire</a></li><li><a href="https://resinboundgravel.uk/near-me/kent/">Kent</a></li><li><a href="https://resinboundgravel.uk/near-me/surrey/">Surrey</a></li><li><a href="https://resinboundgravel.uk/near-me/bedfordshire/">Bedfordshire</a></li><li><a href="https://resinboundgravel.uk/near-me/buckinghamshire/">Buckinghamshire</a></li><li><a href="https://resinboundgravel.uk/near-me/berkshire/">Berkshire</a></li><li><a href="https://resinboundgravel.uk/near-me/cambridgeshire/">Cambridgeshire</a></li><li><a href="https://resinboundgravel.uk/near-me/east-sussex/">East Sussex</a></li><li><a href="https://resinboundgravel.uk/near-me/hampshire/">Hampshire</a></li><li><a href="https://resinboundgravel.uk/near-me/west-sussex/">West Sussex</a></li><li><a href="https://resinboundgravel.uk/near-me/suffolk/">Suffolk</a></li><li><a href="https://resinboundgravel.uk/near-me/oxfordshire/">Oxfordshire</a></li><li><a href="https://resinboundgravel.uk/near-me/northamptonshire/">Northamptonshire</a></li><li><a href="https://resinboundgravel.uk/near-me/wiltshire/">Wiltshire</a></li><li><a href="https://resinboundgravel.uk/near-me/warwickshire/">Warwickshire</a></li><li><a href="https://resinboundgravel.uk/near-me/norfolk/">Norfolk</a></li><li><a href="https://resinboundgravel.uk/near-me/leicestershire/">Leicestershire</a></li><li><a href="https://resinboundgravel.uk/near-me/dorset/">Dorset</a></li><li><a href="https://resinboundgravel.uk/near-me/gloucestershire/">Gloucestershire</a></li><li><a href="https://resinboundgravel.uk/near-me/west-midlands/">West Midlands</a></li><li><a href="https://resinboundgravel.uk/near-me/somerset/">Somerset</a></li><li><a href="https://resinboundgravel.uk/near-me/worcestershire/">Worcestershire</a></li><li><a href="https://resinboundgravel.uk/near-me/nottinghamshire/">Nottinghamshire</a></li><li><a href="https://resinboundgravel.uk/near-me/bristol/">Bristol</a></li><li><a href="https://resinboundgravel.uk/near-me/derbyshire/">Derbyshire</a></li><li><a href="https://resinboundgravel.uk/near-me/lincolnshire/">Lincolnshire</a></li><li><a href="https://resinboundgravel.uk/near-me/herefordshire/">Herefordshire</a></li><li><a href="https://resinboundgravel.uk/near-me/staffordshire/">Staffordshire</a></li><li><a href="https://resinboundgravel.uk/near-me/cardiff/">Cardiff</a></li><li><a href="https://resinboundgravel.uk/near-me/south-yorkshire/">South Yorkshire</a></li><li><a href="https://resinboundgravel.uk/near-me/shropshire/">Shropshire</a></li><li><a href="https://resinboundgravel.uk/near-me/greater-manchester/">Greater Manchester</a></li><li><a href="https://resinboundgravel.uk/near-me/cheshire/">Cheshire</a></li><li><a href="https://resinboundgravel.uk/near-me/west-yorkshire/">West Yorkshire</a></li><li><a href="https://resinboundgravel.uk/near-me/swansea/">Swansea</a></li><li><a href="https://resinboundgravel.uk/near-me/north-yorkshire/">North Yorkshire</a></li><li><a href="https://resinboundgravel.uk/near-me/east-riding-of-yorkshire/">East Riding of Yorkshire</a></li><li><a href="https://resinboundgravel.uk/near-me/merseyside/">Merseyside</a></li><li><a href="https://resinboundgravel.uk/near-me/devon/">Devon</a></li><li><a href="https://resinboundgravel.uk/near-me/lancashire/">Lancashire</a></li><li><a href="https://resinboundgravel.uk/near-me/durham/">Durham</a></li><li><a href="https://resinboundgravel.uk/near-me/tyne-and-wear/">Tyne and Wear</a></li><li><a href="https://resinboundgravel.uk/near-me/northumberland/">Northumberland</a></li><li><a href="https://resinboundgravel.uk/near-me/cumbria/">Cumbria</a></li><li><a href="https://resinboundgravel.uk/near-me/edinburgh/">Edinburgh</a></li><li><a href="https://resinboundgravel.uk/near-me/glasgow/">Glasgow</a></li></ul></div>
  705.  
  706. <script>
  707. .sticky-footer{
  708.  animation: fadeIn 5s;
  709.  -webkit-animation: fadeIn 5s;
  710.  -moz-animation: fadeIn 5s;
  711.  -o-animation: fadeIn 5s;
  712.  -ms-animation: fadeIn 5s;
  713. }
  714. @keyframes fadeIn {
  715.  0% {opacity:0;}
  716.  100% {opacity:1;}
  717. }
  718.  
  719. @-moz-keyframes fadeIn {
  720.  0% {opacity:0;}
  721.  100% {opacity:1;}
  722. }
  723.  
  724. @-webkit-keyframes fadeIn {
  725.  0% {opacity:0;}
  726.  100% {opacity:1;}
  727. }
  728.  
  729. @-o-keyframes fadeIn {
  730.  0% {opacity:0;}
  731.  100% {opacity:1;}
  732. }
  733.  
  734. @-ms-keyframes fadeIn {
  735.  0% {opacity:0;}
  736.  100% {opacity:1;}
  737. }
  738. </script>
  739. <style id='core-block-supports-inline-css' type='text/css'>
  740. /**
  741. * Core styles: block-supports
  742. */
  743.  
  744. </style>
  745. <script type="text/javascript" id="ez-toc-scroll-scriptjs-js-extra">
  746. /* <![CDATA[ */
  747. var eztoc_smooth_local = {"scroll_offset":"30","add_request_uri":""};
  748. /* ]]> */
  749. </script>
  750. <script type="text/javascript" src="https://resinboundgravel.uk/wp-content/plugins/easy-table-of-contents/assets/js/smooth_scroll.js?ver=2.0.65" id="ez-toc-scroll-scriptjs-js"></script>
  751. <script type="text/javascript" src="https://resinboundgravel.uk/wp-content/plugins/easy-table-of-contents/vendor/js-cookie/js.cookie.js?ver=2.2.1" id="ez-toc-js-cookie-js"></script>
  752. <script type="text/javascript" src="https://resinboundgravel.uk/wp-content/plugins/easy-table-of-contents/vendor/sticky-kit/jquery.sticky-kit.js?ver=1.9.2" id="ez-toc-jquery-sticky-kit-js"></script>
  753. <script type="text/javascript" id="ez-toc-js-js-extra">
  754. /* <![CDATA[ */
  755. var ezTOC = {"smooth_scroll":"1","visibility_hide_by_default":"1","scroll_offset":"30","fallbackIcon":"<span class=\"\"><span class=\"eztoc-hide\" style=\"display:none;\">Toggle<\/span><span class=\"ez-toc-icon-toggle-span\"><svg style=\"fill: #999;color:#999\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"list-377408\" width=\"20px\" height=\"20px\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M6 6H4v2h2V6zm14 0H8v2h12V6zM4 11h2v2H4v-2zm16 0H8v2h12v-2zM4 16h2v2H4v-2zm16 0H8v2h12v-2z\" fill=\"currentColor\"><\/path><\/svg><svg style=\"fill: #999;color:#999\" class=\"arrow-unsorted-368013\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"10px\" height=\"10px\" viewBox=\"0 0 24 24\" version=\"1.2\" baseProfile=\"tiny\"><path d=\"M18.2 9.3l-6.2-6.3-6.2 6.3c-.2.2-.3.4-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7zM5.8 14.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.5-.3.7s.1.5.3.7z\"\/><\/svg><\/span><\/span>"};
  756. /* ]]> */
  757. </script>
  758. <script type="text/javascript" src="https://resinboundgravel.uk/wp-content/plugins/easy-table-of-contents/assets/js/front.js?ver=2.0.65-1712762707" id="ez-toc-js-js"></script>
  759. </body>
  760.  
  761. <!-- This example requires Tailwind CSS v2.0+ -->
  762.  
  763.  
  764.  
  765.  
  766.  
  767. <footer class="bg-gray-800" aria-labelledby="footer-heading">
  768.  <h2 id="footer-heading" class="sr-only">Footer</h2>
  769.  <div class="mx-auto max-w-7xl px-6 pb-8 pt-16 sm:pt-24 lg:px-8 lg:pt-16">
  770.    <div class="xl:grid xl:grid-cols-3 xl:gap-8">
  771.    <div class="text-sm leading-6 text-gray-300">
  772.      <a href="/" class="text-lg tracking-widest text-gray-900 uppercase rounded-lg focus:outline-none focus:shadow-outline">
  773.      <img class="h-5 w-auto" height="217" width="24" src="https://resinboundgravel.uk/wp-content/uploads/Resin-Bound-Gravel.png"></a>
  774.      <div class="mt-4">
  775.    <p><a href="/cdn-cgi/l/email-protection#751c1b131a350710061c1b171a001b111207140310195b001e"><span class="__cf_email__" data-cfemail="462f282029063423352f28242933282221342730232a68332d">[email&#160;protected]</span></a><br />
  776. <a href="/cdn-cgi/l/email-protection#0261637067677071427067716b6c606d776c6665706374676e2c7769"><span class="__cf_email__" data-cfemail="197a786b7c7c6b6a596b7c6a70777b766c777d7e6b786f7c75376c72">[email&#160;protected]</span></a><br />
  777. <a href="/cdn-cgi/l/email-protection#4f3c2e232a3c0f3d2a3c26212d203a212b283d2e392a23613a24"><span class="__cf_email__" data-cfemail="443725282137043621372d2a262b312a202336253221286a312f">[email&#160;protected]</span></a><br />
  778. <a href="tel:+441513800489">0151 380 0489</a></p>
  779.    </div>
  780.    </div>  
  781.    <div class="mt-16 grid grid-cols-2 gap-8 xl:col-span-2 xl:mt-0">
  782.        <div class="md:grid md:grid-cols-2 md:gap-8">
  783.  
  784.          <div>
  785.            <p class="text-sm font-semibold leading-6 text-white"></p>
  786.  
  787.            
  788.            </ul>
  789.          </div>
  790.          <div class="mt-10 md:mt-0">
  791.            <p class="text-sm font-semibold leading-6 text-white"></p>
  792.            
  793.            </ul>
  794.          </div>
  795.        </div>
  796.        <div class="md:grid md:grid-cols-2 md:gap-8">
  797.          <div>
  798.            <p class="text-sm font-semibold leading-6 text-white"></p>
  799.            
  800.            </ul>
  801.          </div>
  802.          <div class="mt-10 md:mt-0">
  803.            <p class="text-sm font-semibold leading-6 text-white"></p>
  804.            
  805.            </ul>
  806.          </div>
  807.        </div>
  808.      </div>
  809.    </div>
  810.    <div class="mt-16 border-t border-white/10 pt-8 sm:mt-20 lg:mt-12 lg:flex lg:items-center lg:justify-between">
  811.      <div>
  812.        <p class="text-sm leading-6 text-gray-300"></p>
  813.      </div>
  814.    </div>
  815.    <div class="mt-8 border-t border-white/10 pt-8 md:flex md:items-center md:justify-between">
  816.      
  817.    <div class="mb-6 flex justify-center space-x-6 md:order-2">
  818.      
  819.  
  820.        <a target="_blank" rel="nofollow noopener noreferrer" href="https://twitter.com/resinflooruk"class="text-gray-400 hover:text-gray-500">
  821.        <span class="sr-only">Twitter</span>
  822.        <svg class="h-6 w-6" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_02.twitter" data-name="02.twitter"><circle id="background" cx="76" cy="76" fill="#00a6de" r="76"/><path id="icon" d="m113.85 53a32.09 32.09 0 0 1 -6.51 7.15 2.78 2.78 0 0 0 -1 2.17v.25a45.58 45.58 0 0 1 -2.94 15.86 46.45 46.45 0 0 1 -8.65 14.5 42.73 42.73 0 0 1 -18.75 12.39 46.9 46.9 0 0 1 -14.74 2.29 45 45 0 0 1 -22.6-6.09 1.3 1.3 0 0 1 -.62-1.44 1.25 1.25 0 0 1 1.22-.94h1.9a30.24 30.24 0 0 0 16.94-5.14 16.42 16.42 0 0 1 -13-11.16.86.86 0 0 1 1-1.11 15.08 15.08 0 0 0 2.76.26h.35a16.43 16.43 0 0 1 -9.57-15.11.86.86 0 0 1 1.27-.75 14.44 14.44 0 0 0 3.74 1.45 16.42 16.42 0 0 1 -2.65-19.92.86.86 0 0 1 1.41-.12 42.93 42.93 0 0 0 29.51 15.78h.08a.62.62 0 0 0 .6-.67 17.36 17.36 0 0 1 .38-6 15.91 15.91 0 0 1 10.7-11.44 17.59 17.59 0 0 1 5.19-.8 16.36 16.36 0 0 1 10.84 4.09 2.12 2.12 0 0 0 1.41.54 2.15 2.15 0 0 0 .5-.07 30 30 0 0 0 8-3.31.85.85 0 0 1 1.25 1 16.23 16.23 0 0 1 -4.31 6.87 30.2 30.2 0 0 0 5.24-1.77.86.86 0 0 1 1.05 1.24z" fill="#fff"/></g></g></svg>
  823.        </a>
  824.            <a target="_blank" rel="nofollow noopener noreferrer" href="https://resinboundsurfacesuk.tumblr.com/"class="text-gray-400 hover:text-gray-500">
  825.        <span class="sr-only">Twitter</span>
  826.        <svg class="h-6 w-6" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_12.tumblr" data-name="12.tumblr"><circle id="background" cx="76" cy="76" fill="#001e42" r="76"/><path id="icon" d="m93.94 98.44a9 9 0 0 1 -6.54 2.56c-4.28 0-6.2-2.59-6.2-6.42v-21.7h13.86v-13.17h-13.86v-21.71h-10.43a29.41 29.41 0 0 1 -16.77 21.84v13h10.17v25c0 3.47 3.27 16.1 20 16.1 9.81 0 13.87-6.32 13.87-6.32z" fill="#fff"/></g></g></svg>
  827.        </a>
  828.            <a target="_blank" rel="nofollow noopener noreferrer" href="https://www.youtube.com/channel/UCIRGeFydNTgioD3tzy_4FDw/about"class="text-gray-400 hover:text-gray-500">
  829.        <span class="sr-only">YouTube</span>
  830.        <svg class="h-6 w-6" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_04.youtube" data-name="04.youtube"><circle id="background" cx="76" cy="76" fill="#f20000" r="76"/><path id="icon" d="m112.22 57.72c-1.52-4.72-6.55-7.51-11.22-8.16a236.82 236.82 0 0 0 -50.08 0c-4.63.65-9.66 3.48-11.18 8.16a94.94 94.94 0 0 0 0 36.57c1.56 4.71 6.59 7.51 11.26 8.16a238.16 238.16 0 0 0 50.08 0c4.63-.65 9.66-3.49 11.18-8.16a94.94 94.94 0 0 0 -.04-36.57zm-45.31 32.84v-29.12l23.71 14.56c-7.99 4.91-15.75 9.69-23.71 14.56z" fill="#fff"/></g></g></svg>
  831.        </a>
  832.            <a target="_blank" rel="nofollow noopener noreferrer" href="https://www.pinterest.co.uk/resinboundgraveluk/"class="text-gray-400 hover:text-gray-500">
  833.        <span class="sr-only">Pinterest</span>
  834.        <svg class="h-6 w-6" viewBox="0 0 152 152" width="512" xmlns="http://www.w3.org/2000/svg"><g id="Layer_2" data-name="Layer 2"><g id="_60.ello" data-name="60.ello"><circle id="background" cx="76" cy="76" fill="#1a1a1a" r="76"/><path id="icon" d="m76 38a38 38 0 1 0 38 38 38 38 0 0 0 -38-38zm26.53 48.36a28.47 28.47 0 0 1 -53.06 0 2.37 2.37 0 1 1 4.42-1.72 23.73 23.73 0 0 0 44.22 0 2.37 2.37 0 1 1 4.42 1.72z" fill="#fff"/></g></g></svg>
  835.        </a>
  836.                </div>
  837.  
  838.      <p class="text-sm leading-6 text-gray-300">Copyright
  839.        &copy; 2024 Resin Bound Gravel, All Rights Reserved.
  840.      </p>
  841.  
  842.    </div>
  843.  <div class="mt-8 border-t border-white/10 pt-8 md:flex md:items-center md:justify-between">
  844.                      <div class="text-sm leading-6 text-gray-300">As seen on :
  845.                <a href="https://www.best-companies.co.uk/" class="text-white hover:text-gray-400">
  846.                    Best Companies
  847.                </a>
  848.              </div>
  849.              
  850.                            <div class="text-sm leading-6 text-gray-300">Mentioned On :
  851.                <a href="https://www.fatrank.com/" class="text-white hover:text-gray-400">
  852.                    FatRank
  853.                </a>
  854.              </div>
  855.                            <div class="text-sm leading-6 text-gray-300">Web Design By :
  856.                <a href="https://sitesy.com/" class="text-white hover:text-gray-400">
  857.                    Sitesy Web Design & SEO
  858.                </a>
  859.              </div>
  860.                </div>
  861.  </div>
  862. </footer>
  863. <!-- Performance optimized by Redis Object Cache. Learn more: https://wprediscache.com -->
  864. <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script>
Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda