| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="icon" href="/assets/icon/favicon.ico" type="image/x-icon">
- <title>Free Printable Coloring Page Collections</title>
- <meta name="description"
- content="Discover our extensive collection of coloring pages categorized by themes. Each category offers a variety of designs to suit every interest and skill level.">
- <link rel="stylesheet" href="/stylesheets/v2/styles.css">
- <style>
- h1 {
- color: var(--secondary-color);
- }
- .collection-grid {
- display: grid;
- grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
- gap: 30px;
- margin-top: 40px;
- }
- .collection-card {
- background-color: white;
- border-radius: 10px;
- overflow: hidden;
- box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
- transition: transform 0.3s ease;
- cursor: pointer;
- border: 1px solid #eee;
- }
- .collection-card:hover {
- transform: translateY(-8px);
- }
- .collection-image {
- aspect-ratio: 1/1;
- background-color: #f0f0f0;
- overflow: hidden;
- position: relative;
- }
- .collection-image img {
- width: 100%;
- height: 100%;
- object-fit: cover;
- transition: transform 0.5s ease;
- }
- .collection-card:hover .collection-image img {
- transform: scale(1.05);
- }
- .collection-content {
- padding: 20px;
- }
- .collection-title {
- font-weight: 700;
- font-size: 1.2rem;
- margin-bottom: 8px;
- color: var(--primary-color);
- }
- .collection-description {
- font-size: 0.9rem;
- color: var(--light-text);
- line-height: 1.4;
- }
- @media (max-width: 768px) {
- .collection-grid {
- grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
- gap: 20px;
- }
- .collection-content {
- padding: 15px;
- }
- .collection-title {
- font-size: 1.1rem;
- }
- .collection-description {
- font-size: 0.85rem;
- }
- }
- </style>
- <script type="application/ld+json">
- {
- "@context": "https://schema.org",
- "@type": "CollectionPage",
- "name": "Free Printable Coloring Page Collections",
- "description": "Discover our extensive collection of coloring pages categorized by themes.",
- "url": "https://art.pcoloring.com/coloring-pages",
- "mainEntity": {
- "@type": "ItemList",
- "itemListElement": [
- {
- "@type": "ListItem",
- "position": 1,
- "item": {
- "@type": "CreativeWorkSeries",
- "url": "https://art.pcoloring.com/video-coloring-pages",
- "name": "Video Story Coloring Pages",
- "description": "Watch fascinating videos and turn them into beautiful coloring pages.",
- "image": "https://d2mb6s2cy1zg97.cloudfront.net/thumbs/coloring-page/vs-poster/480/67b2b23b9c09d12e648ea25a.webp"
- }
- },
- <% list.forEach((item, index)=> { %>
- {
- "@type": "ListItem",
- "position": <%= index+2 %>,
- "item": {
- "@type": "CreativeWorkSeries",
- "url": "https://art.pcoloring.com<%= item.uri %>",
- "name": "<%= item.title %>",
- "description": "<%= item.description %>",
- "image": "https://d2mb6s2cy1zg97.cloudfront.net/thumbs/coloring-page/work/480/<%= item.id %>.webp"
- }
- }<% if(index < list.length - 1){ %>, <%}%>
- <% }); %>
- ]
- }
- }
- </script>
- <script type='text/javascript'
- src='https://platform-api.sharethis.com/js/sharethis.js#property=685036ce6c1ae8001abaded7&product=sop'
- async='async'></script>
- </head>
- <!-- Google tag (gtag.js) -->
- <script async src="https://www.googletagmanager.com/gtag/js?id=G-JBGGVGLHTP"></script>
- <script>
- window.dataLayer = window.dataLayer || [];
- function gtag() { dataLayer.push(arguments); }
- gtag('js', new Date());
- gtag('config', 'G-JBGGVGLHTP');
- </script>
- <body>
- <%- include('header') %>
- <main class="container">
- <div class="breadcrumb">
- <a href="/">Home</a> > Coloring Page Collections
- </div>
- <section>
- <h1>Coloring Page Collections</h1>
- <p>Our carefully curated collection of coloring pages is a paradise for color enthusiasts! With a diverse range
- of styles, it includes simple patterns perfect for young children to develop color recognition skills, as well
- as intricate floral designs that satisfy adults seeking immersive creative experiences. Every piece is an
- exclusive original by Art Color, crafted with meticulous care.</p>
- <p>You can <strong>download high-definition PDF</strong> versions of our collections, print them at any time to
- start your creative journey, or <strong>color digitally online</strong>—just tap to bring vibrant hues to
- life. No painting experience is required—even beginners can easily master the process, turning each coloring
- session into a magical journey of creating stunning artworks.</p>
- <div class="collection-grid">
- <a href="/video-coloring-pages">
- <div class="collection-card">
- <div class="collection-image">
- <img
- src="https://d2mb6s2cy1zg97.cloudfront.net/thumbs/coloring-page/vs-poster/480/67b2b23b9c09d12e648ea25a.webp"
- alt="Video Story Coloring Pages">
- </div>
- <div class="collection-content">
- <h2 class="collection-title">Video Story Coloring Pages</h2>
- <div class="collection-description">Watch fascinating videos and turn them into beautiful coloring
- pages. Each video captures moments that our artists transform into detailed coloring designs.</div>
- </div>
- </div>
- </a>
- <% list.forEach(item=> { %>
- <a href="<%= item.uri %>">
- <div class="collection-card">
- <div class="collection-image">
- <img src="https://d2mb6s2cy1zg97.cloudfront.net/thumbs/coloring-page/work/480/<%= item.id %>.webp"
- alt="<%= item.title %>">
- </div>
- <div class="collection-content">
- <h2 class="collection-title">
- <%= item.title %>
- </h2>
- <div class="collection-description">
- <%= item.description %>
- </div>
- </div>
- </div>
- </a>
- <% }); %>
- </div>
- </section>
- </main>
- <%- include('footer') %>
- <script src="/scripts/script.js"></script>
- <script>
- </script>
- </body>
- </html>
|