-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpsucess.php
82 lines (68 loc) · 2.12 KB
/
psucess.php
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
<html>
<head>
</head>
<style>
body {
text-align: center;
/* padding: 40px 0; */
background-image: url("images/ps.png");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
h1 {
color: #88B04B;
font-family: "Nunito Sans", "Helvetica Neue", sans-serif;
font-weight: 900;
font-size: 40px;
margin-bottom: 10px;
}
p {
color: #404F5E;
font-family: "Nunito Sans", "Helvetica Neue", sans-serif;
font-size:20px;
margin: 0;
}
i {
color: #9ABC66;
font-size: 100px;
line-height: 200px;
margin-left:-15px;
}
.card {
background: white;
padding: 60px;
border-radius: 4px;
box-shadow: 0 2px 3px #C8D0D8;
display: inline-block;
margin-top: 100px;
}
#back{
width: 150px;
height: 40px;
background: #ff7200;
border:none;
margin-top: 10px;
margin-left: 65px;
font-size: 18px;
}
#back a{
text-decoration: none;
color: black;
font-weight: bold;
}
.ba{
width: 1px;
}
</style>
<body>
<div class="card">
<div style="border-radius:200px; height:200px; width:200px; background: #F8FAF5; margin:0 auto;">
<i class="checkmark">✓</i>
</div>
<h1>Success</h1>
<p>We received your request;<br/> We'll be in touch with you!</p>
<div class="ba"><button id="back"><a href="cardetails.php">Search Cars</a></button></div>
</div>
</body>
</html>