| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Art Number Coloring - Free Printable Coloring Pages</title>
- <style>
- :root {
- --primary-color: #ff6b6b;
- --secondary-color: #4ecdc4;
- --accent-color: #ffd166;
- --background-color: #f9f9f9;
- --text-color: #333;
- --light-text: #666;
- }
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
- }
- body {
- background-color: var(--background-color);
- color: var(--text-color);
- line-height: 1.6;
- }
- .container {
- max-width: 1200px;
- margin: 0 auto;
- padding: 0 20px;
- }
- header {
- background-color: var(--primary-color);
- color: white;
- padding: 30px 0;
- text-align: center;
- position: relative;
- }
- .header-logo {
- font-size: 1.8rem;
- font-weight: 700;
- letter-spacing: 1px;
- }
- main {
- padding: 40px 0;
- }
- section {
- margin-bottom: 50px;
- background-color: white;
- border-radius: 10px;
- padding: 30px;
- box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
- }
- h1 {
- color: var(--primary-color);
- font-size: 2.2rem;
- margin-bottom: 20px;
- text-align: center;
- }
- h2 {
- color: var(--secondary-color);
- margin: 25px 0 15px;
- font-size: 1.8rem;
- }
- h3 {
- color: var(--accent-color);
- margin: 20px 0 12px;
- font-size: 1.4rem;
- }
- p {
- margin-bottom: 15px;
- color: var(--text-color);
- }
- .highlight {
- background-color: var(--accent-color);
- padding: 2px 6px;
- border-radius: 3px;
- font-weight: 500;
- }
- .feature-grid {
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
- gap: 25px;
- margin: 30px 0;
- }
- .feature-card {
- background-color: #f9f9f9;
- padding: 25px;
- border-radius: 8px;
- border-left: 4px solid var(--secondary-color);
- transition: transform 0.3s ease;
- }
- .feature-card:hover {
- transform: translateY(-5px);
- box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
- }
- .feature-card h4 {
- color: var(--primary-color);
- margin-bottom: 10px;
- font-size: 1.2rem;
- }
- .collection-card {
- background-color: white;
- border-radius: 8px;
- overflow: hidden;
- box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
- margin-bottom: 20px;
- transition: all 0.3s ease;
- }
- .collection-image {
- height: 200px;
- 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: 15px;
- }
- .collection-title {
- font-weight: 600;
- margin-bottom: 8px;
- color: var(--text-color);
- }
- .collection-desc {
- font-size: 0.9rem;
- color: var(--light-text);
- }
- .subscribe-form {
- background-color: var(--secondary-color);
- padding: 30px;
- border-radius: 10px;
- text-align: center;
- margin: 30px 0;
- }
- .subscribe-form h3 {
- color: white;
- margin-top: 0;
- }
- .form-group {
- margin: 15px 0;
- display: flex;
- flex-direction: column;
- }
- .form-group label {
- color: white;
- margin-bottom: 8px;
- font-weight: 500;
- }
- .form-group input {
- padding: 12px;
- border: none;
- border-radius: 5px;
- font-size: 1rem;
- }
- .btn {
- background-color: var(--accent-color);
- color: var(--text-color);
- border: none;
- padding: 12px 20px;
- border-radius: 5px;
- font-size: 1rem;
- font-weight: 600;
- cursor: pointer;
- transition: background-color 0.3s ease;
- }
- .btn:hover {
- background-color: #ffc14d;
- }
- .benefits {
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- gap: 15px;
- margin: 20px 0;
- }
- .benefit {
- background-color: white;
- padding: 10px 15px;
- border-radius: 20px;
- font-size: 0.9rem;
- display: flex;
- align-items: center;
- }
- .benefit svg {
- margin-right: 5px;
- color: var(--primary-color);
- }
- footer {
- background-color: var(--text-color);
- color: white;
- text-align: center;
- padding: 30px 0;
- margin-top: 50px;
- }
- .footer-content {
- max-width: 600px;
- margin: 0 auto;
- }
- @media (max-width: 768px) {
- h1 {
- font-size: 1.8rem;
- }
- h2 {
- font-size: 1.5rem;
- }
- h3 {
- font-size: 1.3rem;
- }
- section {
- padding: 20px;
- }
- .feature-grid,
- .collection-grid {
- grid-template-columns: 1fr;
- }
- }
- </style>
- </head>
- <body>
- <header>
- <div class="container">
- <div class="header-logo">Art Number Coloring</div>
- <p>Free Printable Coloring Pages and Birthday Cards</p>
- </div>
- </header>
- <main class="container">
- <section>
- <h1>Welcome to Art Number Coloring</h1>
- <p>Discover a world of creativity with our free printable coloring pages for all ages. Whether you're looking for
- relaxation, a fun activity, or a way to express your artistry, we've got you covered.</p>
- </section>
- <section>
- <h2>New Collection: Flower Coloring Pages</h2>
- <p>From peonies and tulips to sunflowers and roses, come pick your favorite flowers to color!</p>
- <div class="collection-card">
- <div class="collection-image">
- <img src="https://via.placeholder.com/800/333/fff?text=Flower+Coloring+Page" alt="Flower Coloring Page">
- </div>
- <div class="collection-content">
- <div class="collection-title">Beautiful Flower Bouquet</div>
- <div class="collection-desc">A vibrant bouquet featuring a mix of seasonal flowers, perfect for practicing
- color blending and shading.</div>
- </div>
- </div>
- <div class="collection-card">
- <div class="collection-image">
- <img src="https://via.placeholder.com/800/333/fff?text=Floral+Pattern" alt="Floral Pattern Coloring Page">
- </div>
- <div class="collection-content">
- <div class="collection-title">Intricate Floral Pattern</div>
- <div class="collection-desc">An elaborate floral pattern design that's great for relaxation and creating
- stunning colored masterpieces.</div>
- </div>
- </div>
- </section>
- <section class="subscribe-form">
- <h3>Free Coloring Pages Sent to Your Inbox</h3>
- <p>Get the Eclectic Coloring Book delivered to you and start coloring today.</p>
- <div class="benefits">
- <div class="benefit">
- <svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
- <path d="M21 7L9 19L3 13" stroke="currentColor" stroke-width="2" stroke-linecap="round"
- stroke-linejoin="round" />
- </svg>
- 18-page coloring book with themes like architecture and kawaii
- </div>
- <div class="benefit">
- <svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
- <path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path>
- <path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path>
- </svg>
- Directions for digital coloring in Procreate
- </div>
- <div class="benefit">
- <svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
- <path
- d="M12 2C6.48 2 2 6.48 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2ZM12 20C7.59 20 4 16.41 4 12C4 7.59 7.59 4 12 4C16.41 4 20 7.59 20 12C20 16.41 16.41 20 12 20Z">
- </path>
- <path d="M12 12C10.9 12 10 11.1 10 10C10 8.9 10.9 8 12 8C13.1 8 14 8.9 14 10C14 11.1 13.1 12 12 12Z"></path>
- </svg>
- Access to Subscriber Central for exclusive content
- </div>
- </div>
- <form>
- <div class="form-group">
- <label for="email">Enter your email to receive your Eclectic Coloring Book instantly</label>
- <input type="email" id="email" placeholder="your@email.com" required>
- </div>
- <button type="submit" class="btn">Get My Coloring Book</button>
- </form>
- </section>
- <section>
- <h2>Unleash Your Creativity</h2>
- <p>Art Number Coloring offers free printable coloring pages and tutorials for everyone. Whether you're a beginner
- or an experienced artist, there's something for you here.</p>
- <div class="feature-grid">
- <div class="feature-card">
- <h4>Print and Color at Home</h4>
- <p>Print your coloring page to color at home with markers, colored pencils, or crayons. Create your own cozy
- coloring corner!</p>
- </div>
- <div class="feature-card">
- <h4>Digital Coloring</h4>
- <p>Save your coloring page to your computer or tablet for coloring on digital devices. Perfect for on-the-go
- creativity.</p>
- </div>
- <div class="feature-card">
- <h4>All Ages Welcome</h4>
- <p>From simple designs for kids to intricate patterns for adults, our collection has something for every skill
- level and age.</p>
- </div>
- </div>
- <p>We bring the imagery, you bring your imagination! Start exploring our collection of free coloring pages today
- and let your creativity shine.</p>
- </section>
- </main>
- <footer>
- <div class="container footer-content">
- <p>Art Number Coloring - Free Printable Coloring Pages and Birthday Cards</p>
- <p>Bringing creativity to your fingertips, one coloring page at a time.</p>
- </div>
- </footer>
- </body>
- </html>
|