index.html 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Art Number Coloring - Free Printable Coloring Pages</title>
  7. <style>
  8. :root {
  9. --primary-color: #ff6b6b;
  10. --secondary-color: #4ecdc4;
  11. --accent-color: #ffd166;
  12. --background-color: #f9f9f9;
  13. --text-color: #333;
  14. --light-text: #666;
  15. }
  16. * {
  17. margin: 0;
  18. padding: 0;
  19. box-sizing: border-box;
  20. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  21. }
  22. body {
  23. background-color: var(--background-color);
  24. color: var(--text-color);
  25. line-height: 1.6;
  26. }
  27. .container {
  28. max-width: 1200px;
  29. margin: 0 auto;
  30. padding: 0 20px;
  31. }
  32. header {
  33. background-color: var(--primary-color);
  34. color: white;
  35. padding: 30px 0;
  36. text-align: center;
  37. position: relative;
  38. }
  39. .header-logo {
  40. font-size: 1.8rem;
  41. font-weight: 700;
  42. letter-spacing: 1px;
  43. }
  44. main {
  45. padding: 40px 0;
  46. }
  47. section {
  48. margin-bottom: 50px;
  49. background-color: white;
  50. border-radius: 10px;
  51. padding: 30px;
  52. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  53. }
  54. h1 {
  55. color: var(--primary-color);
  56. font-size: 2.2rem;
  57. margin-bottom: 20px;
  58. text-align: center;
  59. }
  60. h2 {
  61. color: var(--secondary-color);
  62. margin: 25px 0 15px;
  63. font-size: 1.8rem;
  64. }
  65. h3 {
  66. color: var(--accent-color);
  67. margin: 20px 0 12px;
  68. font-size: 1.4rem;
  69. }
  70. p {
  71. margin-bottom: 15px;
  72. color: var(--text-color);
  73. }
  74. .highlight {
  75. background-color: var(--accent-color);
  76. padding: 2px 6px;
  77. border-radius: 3px;
  78. font-weight: 500;
  79. }
  80. .feature-grid {
  81. display: grid;
  82. grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  83. gap: 25px;
  84. margin: 30px 0;
  85. }
  86. .feature-card {
  87. background-color: #f9f9f9;
  88. padding: 25px;
  89. border-radius: 8px;
  90. border-left: 4px solid var(--secondary-color);
  91. transition: transform 0.3s ease;
  92. }
  93. .feature-card:hover {
  94. transform: translateY(-5px);
  95. box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
  96. }
  97. .feature-card h4 {
  98. color: var(--primary-color);
  99. margin-bottom: 10px;
  100. font-size: 1.2rem;
  101. }
  102. .collection-card {
  103. background-color: white;
  104. border-radius: 8px;
  105. overflow: hidden;
  106. box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  107. margin-bottom: 20px;
  108. transition: all 0.3s ease;
  109. }
  110. .collection-image {
  111. height: 200px;
  112. background-color: #f0f0f0;
  113. overflow: hidden;
  114. position: relative;
  115. }
  116. .collection-image img {
  117. width: 100%;
  118. height: 100%;
  119. object-fit: cover;
  120. transition: transform 0.5s ease;
  121. }
  122. .collection-card:hover .collection-image img {
  123. transform: scale(1.05);
  124. }
  125. .collection-content {
  126. padding: 15px;
  127. }
  128. .collection-title {
  129. font-weight: 600;
  130. margin-bottom: 8px;
  131. color: var(--text-color);
  132. }
  133. .collection-desc {
  134. font-size: 0.9rem;
  135. color: var(--light-text);
  136. }
  137. .subscribe-form {
  138. background-color: var(--secondary-color);
  139. padding: 30px;
  140. border-radius: 10px;
  141. text-align: center;
  142. margin: 30px 0;
  143. }
  144. .subscribe-form h3 {
  145. color: white;
  146. margin-top: 0;
  147. }
  148. .form-group {
  149. margin: 15px 0;
  150. display: flex;
  151. flex-direction: column;
  152. }
  153. .form-group label {
  154. color: white;
  155. margin-bottom: 8px;
  156. font-weight: 500;
  157. }
  158. .form-group input {
  159. padding: 12px;
  160. border: none;
  161. border-radius: 5px;
  162. font-size: 1rem;
  163. }
  164. .btn {
  165. background-color: var(--accent-color);
  166. color: var(--text-color);
  167. border: none;
  168. padding: 12px 20px;
  169. border-radius: 5px;
  170. font-size: 1rem;
  171. font-weight: 600;
  172. cursor: pointer;
  173. transition: background-color 0.3s ease;
  174. }
  175. .btn:hover {
  176. background-color: #ffc14d;
  177. }
  178. .benefits {
  179. display: flex;
  180. flex-wrap: wrap;
  181. justify-content: center;
  182. gap: 15px;
  183. margin: 20px 0;
  184. }
  185. .benefit {
  186. background-color: white;
  187. padding: 10px 15px;
  188. border-radius: 20px;
  189. font-size: 0.9rem;
  190. display: flex;
  191. align-items: center;
  192. }
  193. .benefit svg {
  194. margin-right: 5px;
  195. color: var(--primary-color);
  196. }
  197. footer {
  198. background-color: var(--text-color);
  199. color: white;
  200. text-align: center;
  201. padding: 30px 0;
  202. margin-top: 50px;
  203. }
  204. .footer-content {
  205. max-width: 600px;
  206. margin: 0 auto;
  207. }
  208. @media (max-width: 768px) {
  209. h1 {
  210. font-size: 1.8rem;
  211. }
  212. h2 {
  213. font-size: 1.5rem;
  214. }
  215. h3 {
  216. font-size: 1.3rem;
  217. }
  218. section {
  219. padding: 20px;
  220. }
  221. .feature-grid,
  222. .collection-grid {
  223. grid-template-columns: 1fr;
  224. }
  225. }
  226. </style>
  227. </head>
  228. <body>
  229. <header>
  230. <div class="container">
  231. <div class="header-logo">Art Number Coloring</div>
  232. <p>Free Printable Coloring Pages and Birthday Cards</p>
  233. </div>
  234. </header>
  235. <main class="container">
  236. <section>
  237. <h1>Welcome to Art Number Coloring</h1>
  238. <p>Discover a world of creativity with our free printable coloring pages for all ages. Whether you're looking for
  239. relaxation, a fun activity, or a way to express your artistry, we've got you covered.</p>
  240. </section>
  241. <section>
  242. <h2>New Collection: Flower Coloring Pages</h2>
  243. <p>From peonies and tulips to sunflowers and roses, come pick your favorite flowers to color!</p>
  244. <div class="collection-card">
  245. <div class="collection-image">
  246. <img src="https://via.placeholder.com/800/333/fff?text=Flower+Coloring+Page" alt="Flower Coloring Page">
  247. </div>
  248. <div class="collection-content">
  249. <div class="collection-title">Beautiful Flower Bouquet</div>
  250. <div class="collection-desc">A vibrant bouquet featuring a mix of seasonal flowers, perfect for practicing
  251. color blending and shading.</div>
  252. </div>
  253. </div>
  254. <div class="collection-card">
  255. <div class="collection-image">
  256. <img src="https://via.placeholder.com/800/333/fff?text=Floral+Pattern" alt="Floral Pattern Coloring Page">
  257. </div>
  258. <div class="collection-content">
  259. <div class="collection-title">Intricate Floral Pattern</div>
  260. <div class="collection-desc">An elaborate floral pattern design that's great for relaxation and creating
  261. stunning colored masterpieces.</div>
  262. </div>
  263. </div>
  264. </section>
  265. <section class="subscribe-form">
  266. <h3>Free Coloring Pages Sent to Your Inbox</h3>
  267. <p>Get the Eclectic Coloring Book delivered to you and start coloring today.</p>
  268. <div class="benefits">
  269. <div class="benefit">
  270. <svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  271. <path d="M21 7L9 19L3 13" stroke="currentColor" stroke-width="2" stroke-linecap="round"
  272. stroke-linejoin="round" />
  273. </svg>
  274. 18-page coloring book with themes like architecture and kawaii
  275. </div>
  276. <div class="benefit">
  277. <svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  278. <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>
  279. <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>
  280. </svg>
  281. Directions for digital coloring in Procreate
  282. </div>
  283. <div class="benefit">
  284. <svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  285. <path
  286. 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">
  287. </path>
  288. <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>
  289. </svg>
  290. Access to Subscriber Central for exclusive content
  291. </div>
  292. </div>
  293. <form>
  294. <div class="form-group">
  295. <label for="email">Enter your email to receive your Eclectic Coloring Book instantly</label>
  296. <input type="email" id="email" placeholder="your@email.com" required>
  297. </div>
  298. <button type="submit" class="btn">Get My Coloring Book</button>
  299. </form>
  300. </section>
  301. <section>
  302. <h2>Unleash Your Creativity</h2>
  303. <p>Art Number Coloring offers free printable coloring pages and tutorials for everyone. Whether you're a beginner
  304. or an experienced artist, there's something for you here.</p>
  305. <div class="feature-grid">
  306. <div class="feature-card">
  307. <h4>Print and Color at Home</h4>
  308. <p>Print your coloring page to color at home with markers, colored pencils, or crayons. Create your own cozy
  309. coloring corner!</p>
  310. </div>
  311. <div class="feature-card">
  312. <h4>Digital Coloring</h4>
  313. <p>Save your coloring page to your computer or tablet for coloring on digital devices. Perfect for on-the-go
  314. creativity.</p>
  315. </div>
  316. <div class="feature-card">
  317. <h4>All Ages Welcome</h4>
  318. <p>From simple designs for kids to intricate patterns for adults, our collection has something for every skill
  319. level and age.</p>
  320. </div>
  321. </div>
  322. <p>We bring the imagery, you bring your imagination! Start exploring our collection of free coloring pages today
  323. and let your creativity shine.</p>
  324. </section>
  325. </main>
  326. <footer>
  327. <div class="container footer-content">
  328. <p>Art Number Coloring - Free Printable Coloring Pages and Birthday Cards</p>
  329. <p>Bringing creativity to your fingertips, one coloring page at a time.</p>
  330. </div>
  331. </footer>
  332. </body>
  333. </html>