forked from ShashankSinha9592/-safe-drain-4510
-
Notifications
You must be signed in to change notification settings - Fork 0
/
price.html
155 lines (123 loc) · 3.2 KB
/
price.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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Priceing</title>
<style>
body{
background-color: rgb(248, 246, 246);
font-family: "MuseoSans-300",sans-serif;
}
#top{
width: 100%;
text-align: center;
}
#logoimg{
width: 190px;
align-items: center;
margin-bottom: 2%;
}
#boxes{
width: 100%;
background-color: rgb(248, 246, 246);
display: flex;
gap: 3%;
margin-left: 5%;
}
#boxes img{
width: 80%;
border: none;
margin-top: 0px;
box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
#box1{
width: 30%;
margin-top: 0px;
padding-top: 0px;
}
#box2{
width: 30%;
}
#box3{
width: 30%;
}
#faq img {
width: 100%;
}
#see{
width: 100%;
height: 100px;
text-align: center;
font-family:"MuseoSans-300",sans-serif ;
margin-top: 20%;
padding-bottom: 0px;
}
#see>button{
font-size: 15px;
border: 0px;
background-color: none;
}
#see>button:hover{
color:rgb(130, 133, 169) ;
background-color: rgb(207, 207, 207);
}
#see>button>a{
color:rgb(133, 127, 127) ;
background-color: rgb(248, 246, 246);
}
hr{
color: rgb(96, 25, 25);
width: 2px;
}
.free{
position: absolute;
margin-left: 22%;
top: 4%;
}
footer{
width: 100%;
}
.free>img{
width: 150px;
}
body{
position: relative;
float:left;
direction: right;
}
</style>
</head>
<body>
<div id="top">
<img id="logoimg" src="https://coschedule.com/img/cos-logo-full-color.svg" alt="">
<h1>Choose Your All-In-One Marketing Calender</h1>
<p>Create your calendar free today. No credit card requried</p>
</div>
<div class="free"><img src="https://coschedule.com/img/pricing/mc-free-badge-01.png" alt=""></div>
<div id="boxes">
<div id="box1">
<div>
<a href="./marketing_calander.html"> <img class="box1img" src="./img/box1-top.png" alt=""> </a>
<a href="./login.html"> <img src="./img/box1-bottom-top.png" alt=""></a>
</div>
</div>
<div id="box2">
<a href="./marketing_calander.html"> <img class="box2img" src="./img/box2-top.png" alt=""></a>
<a href="./login.html"><img src="./img/box2-bottom-top.png" alt=""></a>
</div>
<div id="box3">
<a href="./marketing_calander.html"> <img class="box3img" src="./img/box3-top.png" alt=""></a>
<a href="./login.html"><img src="./img/box3-bottom-top.png" alt=""></a>
</div>
<hr>
</div>
<div id="see"> <button><a href="./priceDetail.html"><u>SEE ALL FEATURE</u></a></button></div>
<div id="faq">
<img src="./img/faq-top.png" alt="">
<img src="./img/faq-bottom.png" alt="">
<img src="./img/footer.png" alt="">
</div>
</body>
</html>