forked from Harshitmax2022/beauty-bebo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
receipt.html
82 lines (76 loc) · 2.32 KB
/
receipt.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
<!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">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/24c494a6b6.js"crossorigin="anonymous"></script>
<link rel="icon" type="image/x-icon" href="https://www.beautybebo.com/pub/media/favicon/default/beauty-logopng_1.png" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<title>Document</title>
<style>
body{
font-family: 'Roboto', sans-serif;
}
#container{
width: 70%;
height: 600px;
/* border: 1px solid red; */
margin: auto;
/* margin: auto; */
text-align: center;
background-color: #e1e1e1;
}
#container div{
width: 8%;
height: 11.25%;
border-radius: 50%;
background-color:#008000;
color: white;
text-align: center;
margin: auto;
font-size: 50px;
padding-top: 15px;
padding-left: 3px;
margin-top: 70px;
}
h1{
padding-top: 70px;
}
#p1{
font-size: 24px;
font-weight: bold;
}
.p2{
font-size: 18px;
}
button{
background-color: black;
color: white;
border: 1px solid black;
width: 28%;
height: 60px;
font-size: 20px;
border-radius: 10px;
}
a{
text-decoration: none;
color: white;
}
</style>
</head>
<body>
<div id="container">
<h1>Your order has been received</h1>
<div><i class="fa-solid fa-check"></i></div>
<p id="p1">Thankyou for your purchase !</p>
<p class="p2">Your order ID is : 1478523690</p>
<p class="p2">You will receive an order confirmation email with details of your order.</p>
<button><a href="index.html">CONTINUE SHOPPING</a></button>
</div>
</body>
</html>