|
| 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>Cards.css Demo</title> |
| 7 | + <link href="cards.css" rel="stylesheet"> |
| 8 | + <!-- Google Fonts --> |
| 9 | + <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=Cinzel:wght@400;500;600&family=Great+Vibes&display=swap" rel="stylesheet"> |
| 10 | +</head> |
| 11 | +<body> |
| 12 | + <div class="cards-grid"> |
| 13 | + <!-- Royal Crest Card --> |
| 14 | + <div class="card card-crest card-animate-fade"> |
| 15 | + <div class="card-body"> |
| 16 | + <h3>Royal Decree</h3> |
| 17 | + <p>By order of the crown, this proclamation is issued</p> |
| 18 | + </div> |
| 19 | + </div> |
| 20 | + |
| 21 | + <!-- Historical Manuscript --> |
| 22 | + <div class="card card-manuscript"> |
| 23 | + <div class="card-badge card-badge-royal">Ancient</div> |
| 24 | + <div class="card-body"> |
| 25 | + <h3>Medieval Manuscript</h3> |
| 26 | + <p>Illuminated texts from the 14th century reveal secrets of alchemy and royal lineage.</p> |
| 27 | + </div> |
| 28 | + </div> |
| 29 | + |
| 30 | + <!-- Professional Business Card --> |
| 31 | + <div class="card card-business"> |
| 32 | + <div class="card-header"> |
| 33 | + <h3>Executive Profile</h3> |
| 34 | + </div> |
| 35 | + <div class="card-body"> |
| 36 | + <p>Senior Executive with 15+ years of leadership experience in global corporations.</p> |
| 37 | + </div> |
| 38 | + <div class="card-footer"> |
| 39 | + <button class="btn btn-primary">Contact</button> |
| 40 | + </div> |
| 41 | + </div> |
| 42 | + |
| 43 | + <!-- Product Card --> |
| 44 | + <div class="card card-product"> |
| 45 | + <img src="product.jpg" alt="Product" class="card-img-top"> |
| 46 | + <div class="card-product-overlay"> |
| 47 | + <h4>Royal Collection</h4> |
| 48 | + <p>Limited edition piece</p> |
| 49 | + <button class="btn btn-outline">View Details</button> |
| 50 | + </div> |
| 51 | + </div> |
| 52 | + |
| 53 | + <!-- Pricing Card --> |
| 54 | + <div class="card card-pricing card-pricing-featured"> |
| 55 | + <div class="card-header"> |
| 56 | + <h3>Royal Package</h3> |
| 57 | + </div> |
| 58 | + <div class="card-body"> |
| 59 | + <div class="card-pricing-price">$299<span class="card-pricing-period">/month</span></div> |
| 60 | + <ul class="card-pricing-features"> |
| 61 | + <li>Premium Support</li> |
| 62 | + <li>Royal Features</li> |
| 63 | + <li>Priority Access</li> |
| 64 | + </ul> |
| 65 | + <button class="btn btn-gold">Get Started</button> |
| 66 | + </div> |
| 67 | + </div> |
| 68 | + </div> |
| 69 | +</body> |
| 70 | +</html> |
0 commit comments