-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (60 loc) · 1.71 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>Supscription</title>
<style>
.container{
height: 100vh;
display: flex;
flex-wrap: wrap;
flex-direction: row;
align-items: center;
justify-content: space-evenly;
}
.Plan{
position: relative;
text-align: center;
height: 70vh;
flex-basis: 40vh;
min-width: 10vh;
max-width: 40vhvh;
border-radius: 20px;
border: 2px solid black;
}
.C{
position: absolute;
left: 10%;
top: 22%;
background-color: #5356FF;
height: 50%;
width: 80%;
}
#CB{
background-color:#CD7F32;
}
#CG{
background-color: #FFD700;
}
#CD{
background-color: #b9f2ff;
}
</style>
</head>
<body>
<div class="container">
<div class="Plan" id="Bronze">
<h1>Bronze</h1>
<div class="C" id="CB"></div>
</div>
<div class="Plan" id="Gold">
<h1>Gold</h1>
<div class="C" id="CG"></div>
</div>
<div class="Plan" id="Diamond">
<h1>Diamond</h1>
<div class="C" id="CD"></div>
</div>
</div>
</body>
</html>