| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="description"
- content="Explore our extensive gallery of coloring pages created by talented artists. Download and color beautiful designs for free!">
- <title>Gallery - Art Color</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;
- }
- /* 导航栏 */
- .navbar {
- background-color: white;
- box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
- padding: 15px 0;
- position: sticky;
- top: 0;
- z-index: 100;
- }
- .navbar-content {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .nav-logo {
- display: flex;
- align-items: center;
- }
- .nav-logo img {
- width: 40px;
- height: 40px;
- margin-right: 10px;
- }
- .nav-logo span {
- font-size: 1.2rem;
- font-weight: 700;
- color: var(--primary-color);
- }
- .nav-links {
- display: flex;
- gap: 30px;
- }
- .nav-links a {
- color: var(--text-color);
- text-decoration: none;
- font-weight: 500;
- transition: color 0.3s ease;
- }
- .nav-links a:hover,
- .nav-links a.active {
- color: var(--primary-color);
- }
- .nav-cta {
- display: flex;
- gap: 15px;
- }
- .btn {
- padding: 8px 16px;
- border-radius: 5px;
- text-decoration: none;
- font-weight: 500;
- transition: all 0.3s ease;
- }
- .btn-primary {
- background-color: var(--primary-color);
- color: white;
- }
- .btn-primary:hover {
- background-color: #ff5252;
- transform: translateY(-2px);
- }
- .btn-secondary {
- background-color: white;
- color: var(--primary-color);
- border: 1px solid var(--primary-color);
- }
- .btn-secondary:hover {
- background-color: #fff5f5;
- transform: translateY(-2px);
- }
- /* 画廊页面头部 */
- .gallery-header {
- background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
- color: white;
- padding: 60px 0;
- text-align: center;
- margin-bottom: 40px;
- }
- .gallery-title {
- font-size: 2.5rem;
- font-weight: 700;
- margin-bottom: 10px;
- }
- .gallery-subtitle {
- font-size: 1.2rem;
- max-width: 800px;
- margin: 0 auto;
- }
- /* 分类筛选 */
- .gallery-filters {
- margin-bottom: 40px;
- text-align: center;
- }
- .filter-buttons {
- display: inline-flex;
- flex-wrap: wrap;
- justify-content: center;
- gap: 10px;
- margin-bottom: 20px;
- }
- .filter-btn {
- padding: 8px 20px;
- background-color: white;
- border-radius: 20px;
- border: 1px solid #eee;
- cursor: pointer;
- transition: all 0.3s ease;
- font-weight: 500;
- }
- .filter-btn:hover,
- .filter-btn.active {
- background-color: var(--primary-color);
- color: white;
- border-color: var(--primary-color);
- }
- .search-bar {
- max-width: 500px;
- margin: 0 auto;
- position: relative;
- }
- .search-bar input {
- width: 100%;
- padding: 12px 40px;
- border-radius: 30px;
- border: 1px solid #eee;
- outline: none;
- box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
- }
- .search-bar i {
- position: absolute;
- left: 15px;
- top: 50%;
- transform: translateY(-50%);
- color: var(--light-text);
- }
- /* 画廊网格 */
- .gallery-grid {
- display: grid;
- grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
- gap: 30px;
- margin-bottom: 60px;
- }
- .gallery-item {
- background-color: white;
- border-radius: 15px;
- overflow: hidden;
- box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
- transition: transform 0.3s ease;
- }
- .gallery-item:hover {
- transform: translateY(-5px);
- }
- .item-image {
- height: 350px;
- overflow: hidden;
- position: relative;
- }
- .item-image img {
- width: 100%;
- height: 100%;
- object-fit: cover;
- transition: transform 0.5s ease;
- }
- .gallery-item:hover .item-image img {
- transform: scale(1.05);
- }
- .item-overlay {
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
- padding: 20px;
- opacity: 0;
- transition: opacity 0.3s ease;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .gallery-item:hover .item-overlay {
- opacity: 1;
- }
- .overlay-btn {
- background-color: white;
- color: var(--primary-color);
- padding: 8px 12px;
- border-radius: 5px;
- font-weight: 500;
- text-decoration: none;
- transition: background-color 0.3s ease;
- }
- .overlay-btn:hover {
- background-color: #f8f8f8;
- }
- .item-info {
- padding: 20px;
- }
- .item-title {
- font-size: 1.2rem;
- font-weight: 600;
- margin-bottom: 5px;
- }
- .item-meta {
- display: flex;
- justify-content: space-between;
- align-items: center;
- color: var(--light-text);
- font-size: 0.9rem;
- }
- .item-author {
- display: flex;
- align-items: center;
- }
- .author-avatar {
- width: 30px;
- height: 30px;
- border-radius: 50%;
- overflow: hidden;
- margin-right: 10px;
- }
- .author-avatar img {
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- /* 设计师展示区 */
- .designers-section {
- background-color: white;
- padding: 80px 0;
- }
- .designers-header {
- text-align: center;
- margin-bottom: 60px;
- }
- .designers-title {
- font-size: 2rem;
- color: var(--secondary-color);
- margin-bottom: 10px;
- }
- .designers-subtitle {
- max-width: 600px;
- margin: 0 auto;
- color: var(--light-text);
- }
- .designers-grid {
- display: grid;
- grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
- gap: 40px;
- }
- .designer-card {
- text-align: center;
- transition: transform 0.3s ease;
- }
- .designer-card:hover {
- transform: translateY(-8px);
- }
- .designer-avatar {
- width: 140px;
- height: 140px;
- margin: 0 auto 20px;
- border-radius: 50%;
- overflow: hidden;
- box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
- position: relative;
- }
- .designer-avatar img {
- width: 100%;
- height: 100%;
- object-fit: cover;
- transition: transform 0.5s ease;
- }
- .designer-card:hover .designer-avatar img {
- transform: scale(1.05);
- }
- .designer-avatar::after {
- content: '';
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 40%;
- background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
- opacity: 0;
- transition: opacity 0.3s ease;
- }
- .designer-card:hover .designer-avatar::after {
- opacity: 1;
- }
- .designer-name {
- font-size: 1.3rem;
- font-weight: 600;
- color: var(--text-color);
- margin-bottom: 5px;
- }
- .designer-stats {
- display: flex;
- justify-content: center;
- gap: 20px;
- margin-bottom: 15px;
- }
- .stat-item {
- text-align: center;
- }
- .stat-number {
- font-size: 1.2rem;
- font-weight: 700;
- color: var(--primary-color);
- }
- .stat-label {
- font-size: 0.9rem;
- color: var(--light-text);
- }
- .designer-cta {
- display: inline-block;
- padding: 8px 20px;
- border: 1px solid var(--primary-color);
- color: var(--primary-color);
- border-radius: 20px;
- text-decoration: none;
- font-weight: 500;
- transition: all 0.3s ease;
- }
- .designer-cta:hover {
- background-color: var(--primary-color);
- color: white;
- }
- /* 分页 */
- .pagination {
- display: flex;
- justify-content: center;
- margin: 40px 0;
- }
- .pagination ul {
- list-style: none;
- display: flex;
- gap: 10px;
- }
- .pagination li {
- width: 40px;
- height: 40px;
- display: flex;
- justify-content: center;
- align-items: center;
- border-radius: 50%;
- cursor: pointer;
- transition: all 0.3s ease;
- }
- .pagination li:hover,
- .pagination li.active {
- background-color: var(--primary-color);
- color: white;
- }
- /* 页脚 */
- footer {
- background-color: var(--text-color);
- color: white;
- padding: 60px 0;
- }
- .footer-content {
- display: grid;
- grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
- gap: 40px;
- }
- .footer-section h3 {
- font-size: 1.2rem;
- margin-bottom: 20px;
- }
- .footer-section p {
- color: rgba(255, 255, 255, 0.7);
- margin-bottom: 20px;
- }
- .footer-links {
- list-style: none;
- }
- .footer-links li {
- margin-bottom: 10px;
- }
- .footer-links a {
- color: rgba(255, 255, 255, 0.7);
- text-decoration: none;
- transition: color 0.3s ease;
- }
- .footer-links a:hover {
- color: white;
- }
- .social-links {
- display: flex;
- gap: 15px;
- }
- .social-links a {
- width: 40px;
- height: 40px;
- border-radius: 50%;
- background-color: rgba(255, 255, 255, 0.1);
- display: flex;
- justify-content: center;
- align-items: center;
- text-decoration: none;
- color: white;
- transition: all 0.3s ease;
- }
- .social-links a:hover {
- background-color: var(--primary-color);
- }
- .copyright {
- text-align: center;
- margin-top: 40px;
- padding-top: 20px;
- border-top: 1px solid rgba(255, 255, 255, 0.1);
- }
- /* 响应式 */
- @media (max-width: 768px) {
- .navbar-content {
- flex-direction: column;
- gap: 20px;
- }
- .nav-links {
- flex-wrap: wrap;
- justify-content: center;
- }
- .gallery-title {
- font-size: 2rem;
- }
- .gallery-subtitle {
- font-size: 1rem;
- }
- .filter-buttons {
- padding: 0 10px;
- }
- .designers-title {
- font-size: 1.8rem;
- }
- .designers-grid {
- grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
- }
- .footer-content {
- text-align: center;
- }
- .social-links {
- justify-content: center;
- }
- }
- </style>
- </head>
- <body>
- <!-- 导航栏 -->
- <nav class="navbar">
- <div class="container navbar-content">
- <div class="nav-logo">
- <img src="https://picsum.photos/40/40?random=100" alt="Art Color Logo">
- <span>Art Color</span>
- </div>
- <div class="nav-links">
- <a href="#" class="active">Home</a>
- <a href="#">Gallery</a>
- <a href="#">Designers</a>
- <a href="#">About</a>
- <a href="#">Contact</a>
- </div>
- <div class="nav-cta">
- <a href="#" class="btn btn-secondary">Login</a>
- <a href="#" class="btn btn-primary">Sign Up</a>
- </div>
- </div>
- </nav>
- <!-- 画廊页面头部 -->
- <header class="gallery-header">
- <div class="container">
- <h1 class="gallery-title">Explore Our Gallery</h1>
- <p class="gallery-subtitle">Discover thousands of beautiful coloring pages created by talented artists from
- around the world.</p>
- </div>
- </header>
- <!-- 分类筛选 -->
- <section class="gallery-filters container">
- <div class="filter-buttons">
- <button class="filter-btn active">All</button>
- <button class="filter-btn">Animals</button>
- <button class="filter-btn">Nature</button>
- <button class="filter-btn">Mandala</button>
- <button class="filter-btn">Fantasy</button>
- <button class="filter-btn">Abstract</button>
- <button class="filter-btn">Floral</button>
- </div>
- <div class="search-bar">
- <i class="fa fa-search"></i>
- <input type="text" placeholder="Search for coloring pages...">
- </div>
- </section>
- <!-- 画廊网格 -->
- <section class="gallery-grid container">
- <!-- 画廊项目1 -->
- <div class="gallery-item">
- <div class="item-image">
- <img src="https://picsum.photos/600/800?random=1" alt="Coloring Page - Forest">
- <div class="item-overlay">
- <a href="#" class="overlay-btn">Download</a>
- <div class="item-likes">
- <i class="fa fa-heart"></i> 142
- </div>
- </div>
- </div>
- <div class="item-info">
- <h3 class="item-title">Enchanted Forest</h3>
- <div class="item-meta">
- <div class="item-author">
- <div class="author-avatar">
- <img src="https://picsum.photos/30/30?random=30" alt="Emily Wilson">
- </div>
- <span>Emily Wilson</span>
- </div>
- <span>3 days ago</span>
- </div>
- </div>
- </div>
- <!-- 画廊项目2 -->
- <div class="gallery-item">
- <div class="item-image">
- <img src="https://picsum.photos/600/800?random=2" alt="Coloring Page - Ocean">
- <div class="item-overlay">
- <a href="#" class="overlay-btn">Download</a>
- <div class="item-likes">
- <i class="fa fa-heart"></i> 98
- </div>
- </div>
- </div>
- <div class="item-info">
- <h3 class="item-title">Mystic Ocean</h3>
- <div class="item-meta">
- <div class="item-author">
- <div class="author-avatar">
- <img src="https://picsum.photos/30/30?random=31" alt="Michael Chen">
- </div>
- <span>Michael Chen</span>
- </div>
- <span>1 week ago</span>
- </div>
- </div>
- </div>
- <!-- 画廊项目3 -->
- <div class="gallery-item">
- <div class="item-image">
- <img src="https://picsum.photos/600/800?random=3" alt="Coloring Page - Mandala">
- <div class="item-overlay">
- <a href="#" class="overlay-btn">Download</a>
- <div class="item-likes">
- <i class="fa fa-heart"></i> 215
- </div>
- </div>
- </div>
- <div class="item-info">
- <h3 class="item-title">Cosmic Mandala</h3>
- <div class="item-meta">
- <div class="item-author">
- <div class="author-avatar">
- <img src="https://picsum.photos/30/30?random=32" alt="Sophia Rodriguez">
- </div>
- <span>Sophia Rodriguez</span>
- </div>
- <span>2 weeks ago</span>
- </div>
- </div>
- </div>
- <!-- 画廊项目4 -->
- <div class="gallery-item">
- <div class="item-image">
- <img src="https://picsum.photos/600/800?random=4" alt="Coloring Page - Animals">
- <div class="item-overlay">
- <a href="#" class="overlay-btn">Download</a>
- <div class="item-likes">
- <i class="fa fa-heart"></i> 176
- </div>
- </div>
- </div>
- <div class="item-info">
- <h3 class="item-title">Wild Safari</h3>
- <div class="item-meta">
- <div class="item-author">
- <div class="author-avatar">
- <img src="https://picsum.photos/30/30?random=33" alt="Daniel Kim">
- </div>
- <span>Daniel Kim</span>
- </div>
- <span>3 weeks ago</span>
- </div>
- </div>
- </div>
- <!-- 画廊项目5 -->
- <div class="gallery-item">
- <div class="item-image">
- <img src="https://picsum.photos/600/800?random=5" alt="Coloring Page - Fantasy">
- <div class="item-overlay">
- <a href="#" class="overlay-btn">Download</a>
- <div class="item-likes">
- <i class="fa fa-heart"></i> 132
- </div>
- </div>
- </div>
- <div class="item-info">
- <h3 class="item-title">Dragon's Lair</h3>
- <div class="item-meta">
- <div class="item-author">
- <div class="author-avatar">
- <img src="https://picsum.photos/30/30?random=34" alt="Olivia Garcia">
- </div>
- <span>Olivia Garcia</span>
- </div>
- <span>1 month ago</span>
- </div>
- </div>
- </div>
- <!-- 画廊项目6 -->
- <div class="gallery-item">
- <div class="item-image">
- <img src="https://picsum.photos/600/800?random=6" alt="Coloring Page - Flowers">
- <div class="item-overlay">
- <a href="#" class="overlay-btn">Download</a>
- <div class="item-likes">
- <i class="fa fa-heart"></i> 159
- </div>
- </div>
- </div>
- <div class="item-info">
- <h3 class="item-title">Floral Paradise</h3>
- <div class="item-meta">
- <div class="item-author">
- <div class="author-avatar">
- <img src="https://picsum.photos/30/30?random=35" alt="Ethan Brown">
- </div>
- <span>Ethan Brown</span>
- </div>
- <span>1 month ago</span>
- </div>
- </div>
- </div>
- </section>
- <!-- 分页 -->
- <div class="pagination container">
- <ul>
- <li><i class="fa fa-angle-left"></i></li>
- <li class="active">1</li>
- <li>2</li>
- <li>3</li>
- <li>4</li>
- <li>5</li>
- <li><i class="fa fa-angle-right"></i></li>
- </ul>
- </div>
- <!-- 设计师展示区 -->
- <section class="designers-section">
- <div class="container">
- <div class="designers-header">
- <h2 class="designers-title">Meet Our Talented Designers</h2>
- <p class="designers-subtitle">These creative artists are behind our beautiful collection of coloring
- pages. Each brings their unique style and vision.</p>
- </div>
- <div class="designers-grid">
- <!-- 设计师1 -->
- <div class="designer-card">
- <div class="designer-avatar">
- <img src="https://picsum.photos/200/200?random=30" alt="Emily Wilson">
- </div>
- <h3 class="designer-name">Emily Wilson</h3>
- <div class="designer-stats">
- <div class="stat-item">
- <div class="stat-number">142</div>
- <div class="stat-label">Artworks</div>
- </div>
- <div class="stat-item">
- <div class="stat-number">4.9</div>
- <div class="stat-label">Rating</div>
- </div>
- </div>
- <a href="#" class="designer-cta">View Profile</a>
- </div>
- <!-- 设计师2 -->
- <div class="designer-card">
- <div class="designer-avatar">
- <img src="https://picsum.photos/200/200?random=31" alt="Michael Chen">
- </div>
- <h3 class="designer-name">Michael Chen</h3>
- <div class="designer-stats">
- <div class="stat-item">
- <div class="stat-number">98</div>
- <div class="stat-label">Artworks</div>
- </div>
- <div class="stat-item">
- <div class="stat-number">4.7</div>
- <div class="stat-label">Rating</div>
- </div>
- </div>
- <a href="#" class="designer-cta">View Profile</a>
- </div>
- <!-- 设计师3 -->
- <div class="designer-card">
- <div class="designer-avatar">
- <img src="https://picsum.photos/200/200?random=32" alt="Sophia Rodriguez">
- </div>
- <h3 class="designer-name">Sophia Rodriguez</h3>
- <div class="designer-stats">
- <div class="stat-item">
- <div class="stat-number">115</div>
- <div class="stat-label">Artworks</div>
- </div>
- <div class="stat-item">
- <div class="stat-number">4.8</div>
- <div class="stat-label">Rating</div>
- </div>
- </div>
- <a href="#" class="designer-cta">View Profile</a>
- </div>
- <!-- 设计师4 -->
- <div class="designer-card">
- <div class="designer-avatar">
- <img src="https://picsum.photos/200/200?random=33" alt="Daniel Kim">
- </div>
- <h3 class="designer-name">Daniel Kim</h3>
- <div class="designer-stats">
- <div class="stat-item">
- <div class="stat-number">87</div>
- <div class="stat-label">Artworks</div>
- </div>
- <div class="stat-item">
- <div class="stat-number">4.6</div>
- <div class="stat-label">Rating</div>
- </div>
- </div>
- <a href="#" class="designer-cta">View Profile</a>
- </div>
- <!-- 设计师5 -->
- <div class="designer-card">
- <div class="designer-avatar">
- <img src="https://picsum.photos/200/200?random=34" alt="Olivia Garcia">
- </div>
- <h3 class="designer-name">Olivia Garcia</h3>
- <div class="designer-stats">
- <div class="stat-item">
- <div class="stat-number">123</div>
- <div class="stat-label">Artworks</div>
- </div>
- <div class="stat-item">
- <div class="stat-number">4.9</div>
- <div class="stat-label">Rating</div>
- </div>
- </div>
- <a href="#" class="designer-cta">View Profile</a>
- </div>
- <!-- 设计师6 -->
- <div class="designer-card">
- <div class="designer-avatar">
- <img src="https://picsum.photos/200/200?random=35" alt="Ethan Brown">
- </div>
- <h3 class="designer-name">Ethan Brown</h3>
- <div class="designer-stats">
- <div class="stat-item">
- <div class="stat-number">104</div>
- <div class="stat-label">Artworks</div>
- </div>
- <div class="stat-item">
- <div class="stat-number">4.7</div>
- <div class="stat-label">Rating</div>
- </div>
- </div>
- <a href="#" class="designer-cta">View Profile</a>
- </div>
- </div>
- </div>
- </section>
- <!-- 页脚 -->
- <footer>
- <div class="container footer-content">
- <div class="footer-section">
- <h3>About Art Color</h3>
- <p>Art Color is the best app for adults and kids who love to color. With thousands of beautiful designs
- and daily updates, there's always something new to color.</p>
- <div class="social-links">
- <a href="#" class="fa fa-facebook"></a>
- <a href="#" class="fa fa-twitter"></a>
- <a href="#" class="fa fa-instagram"></a>
- <a href="#" class="fa fa-pinterest"></a>
- </div>
- </div>
- <div class="footer-section">
- <h3>Quick Links</h3>
- <ul class="footer-links">
- <li><a href="#">Home</a></li>
- <li><a href="#">Gallery</a></li>
- <li><a href="#">Designers</a></li>
- <li><a href="#">About Us</a></li>
- <li><a href="#">Contact</a></li>
- </ul>
- </div>
- <div class="footer-section">
- <h3>Support</h3>
- <ul class="footer-links">
- <li><a href="#">FAQ</a></li>
- <li><a href="#">Privacy Policy</a></li>
- <li><a href="#">Terms of Service</a></li>
- <li><a href="#">Help Center</a></li>
- <li><a href="#">Feedback</a></li>
- </ul>
- </div>
- <div class="footer-section">
- <h3>Download App</h3>
- <p>Get our app on your mobile device for the best experience.</p>
- <div class="app-badge-container">
- <a href="#" class="app-badge">
- <img src="https://picsum.photos/140/50?random=5" alt="Download on the App Store"
- style="width:140px">
- </a>
- <a href="#" class="app-badge">
- <img src="https://picsum.photos/140/50?random=6" alt="Get it on Google Play"
- style="width:140px">
- </a>
- </div>
- </div>
- </div>
- <div class="copyright">
- <p>© 2025 Art Color. All rights reserved.</p>
- </div>
- </footer>
- <!-- 字体图标库 -->
- <script src="https://cdn.tailwindcss.com"></script>
- <link href="https://cdn.jsdelivr.net/npm/font-awesome@4.7.0/css/font-awesome.min.css" rel="stylesheet">
- </body>
- </html>
|