-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmonthly-screenshot.html
More file actions
117 lines (114 loc) · 3.34 KB
/
Copy pathmonthly-screenshot.html
File metadata and controls
117 lines (114 loc) · 3.34 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Monthly Subscription</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
margin: 0;
padding: 0;
background: #f0f0f0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.screenshot {
width: 375px;
height: 812px;
background: white;
border-radius: 20px;
box-shadow: 0 20px 40px rgba(0,0,0,0.3);
position: relative;
overflow: hidden;
}
.header {
background: linear-gradient(135deg, #4CAF50, #45a049);
color: white;
padding: 20px;
text-align: center;
font-size: 24px;
font-weight: bold;
}
.content {
padding: 30px;
}
.premium-card {
background: linear-gradient(135deg, #FFD700, #FFA500);
border-radius: 15px;
padding: 25px;
margin: 20px 0;
text-align: center;
color: white;
box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}
.price {
font-size: 36px;
font-weight: bold;
margin: 10px 0;
}
.features {
text-align: left;
margin: 20px 0;
}
.feature {
padding: 10px 0;
border-bottom: 1px solid #eee;
}
.button {
background: linear-gradient(135deg, #4CAF50, #45a049);
color: white;
border: none;
padding: 15px 30px;
border-radius: 25px;
font-size: 18px;
font-weight: bold;
width: 100%;
margin: 20px 0;
cursor: pointer;
}
.pack-option {
background: #f8f9fa;
border: 2px solid #e9ecef;
border-radius: 10px;
padding: 20px;
margin: 10px 0;
text-align: center;
}
.pack-price {
font-size: 24px;
font-weight: bold;
color: #4CAF50;
}
.selected {
border-color: #4CAF50;
background: #f0f8f0;
}
</style>
</head>
<body>
<div class="screenshot">
<div class="header">FloraMind Premium</div>
<div class="content">
<div class="premium-card">
<h2>Premium Monthly</h2>
<div class="price">$4.99/month</div>
<p>Unlimited plant identifications</p>
</div>
<div class="features">
<div class="feature">✓ Unlimited plant identifications</div>
<div class="feature">✓ Advanced plant care tips</div>
<div class="feature">✓ Plant health monitoring</div>
<div class="feature">✓ Premium plant database</div>
<div class="feature">✓ No ads</div>
</div>
<button class="button">Start Free Trial</button>
<p style="text-align: center; color: #666; font-size: 12px;">
Cancel anytime. Auto-renewable subscription.
</p>
</div>
</div>
</body>
</html>