-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcards.html
More file actions
70 lines (66 loc) · 2.61 KB
/
cards.html
File metadata and controls
70 lines (66 loc) · 2.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cards.css Demo</title>
<link href="cards.css" rel="stylesheet">
<!-- Google Fonts -->
<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">
</head>
<body>
<div class="cards-grid">
<!-- Royal Crest Card -->
<div class="card card-crest card-animate-fade">
<div class="card-body">
<h3>Royal Decree</h3>
<p>By order of the crown, this proclamation is issued</p>
</div>
</div>
<!-- Historical Manuscript -->
<div class="card card-manuscript">
<div class="card-badge card-badge-royal">Ancient</div>
<div class="card-body">
<h3>Medieval Manuscript</h3>
<p>Illuminated texts from the 14th century reveal secrets of alchemy and royal lineage.</p>
</div>
</div>
<!-- Professional Business Card -->
<div class="card card-business">
<div class="card-header">
<h3>Executive Profile</h3>
</div>
<div class="card-body">
<p>Senior Executive with 15+ years of leadership experience in global corporations.</p>
</div>
<div class="card-footer">
<button class="btn btn-primary">Contact</button>
</div>
</div>
<!-- Product Card -->
<div class="card card-product">
<img src="product.jpg" alt="Product" class="card-img-top">
<div class="card-product-overlay">
<h4>Royal Collection</h4>
<p>Limited edition piece</p>
<button class="btn btn-outline">View Details</button>
</div>
</div>
<!-- Pricing Card -->
<div class="card card-pricing card-pricing-featured">
<div class="card-header">
<h3>Royal Package</h3>
</div>
<div class="card-body">
<div class="card-pricing-price">$299<span class="card-pricing-period">/month</span></div>
<ul class="card-pricing-features">
<li>Premium Support</li>
<li>Royal Features</li>
<li>Priority Access</li>
</ul>
<button class="btn btn-gold">Get Started</button>
</div>
</div>
</div>
</body>
</html>