-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject_2.html
68 lines (45 loc) · 2.46 KB
/
project_2.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- <link rel="stylesheet" href="css/style.css"> -->
<title>Pricing Card Project</title>
</head>
<body>
<div class="flex justify-center items-center bg-slate-800 min-h-screen ">
<div class="flex flex-col space-y-8 md:flex-row md:space-y-0 md:space-x-8 ">
<div class="mt-5 md:mt-0 bg-slate-800 border-8 rounded-2xl border-zinc-600 text-white space-y-4 text-center p-10 font-serif">
<div class="font-serif"> BASIC</div>
<div class="inline-block font-serif text-5xl"> 100GB</div>
<div class="text-sm font-serif"> $1.99/month</div>
<button class=" border border-1 border-purple-600 py-2 px-8 rounded-lg font-serif"> Purchase </button>
<div class="border border-slate-600 w-full"></div>
<div> 200GB Storage</div>
<div> Option to Add Storage</div>
<div> Extra Member Benefits</div>
</div>
<div class="bg-slate-800 border-8 rounded-2xl border-purple-600 text-white space-y-4 text-center p-10 font-serif">
<div class="font-serif"> STANDARD</div>
<div class="inline-block font-serif text-5xl"> 200GB</div>
<div class="text-sm font-serif"> $3.99/month</div>
<button class="bg-purple-600 py-2 px-8 rounded-lg font-serif"> Purchase </button>
<div class="border border-slate-600 w-full"></div>
<div> 200GB Storage</div>
<div> Option to Add Storage</div>
<div> Extra Member Benefits</div>
</div>
<div class="mb-5 bg-slate-800 border-8 rounded-2xl border-zinc-600 text-white space-y-4 text-center p-10 font-serif">
<div class="font-serif"> PREMIUM</div>
<div class="inline-block font-serif text-5xl"> 2TB</div>
<div class="text-sm font-serif"> $8.99/month</div>
<button class="border border-1 border-purple-600 py-2 px-8 rounded-lg font-serif"> Purchase </button>
<div class="border border-slate-600 w-full"></div>
<div> 200GB Storage</div>
<div> Option to Add Storage</div>
<div> Extra Member Benefits</div>
</div>
</div>
</div>
</body>
</html>