forked from soumyanil22/Group_project_bobbi_brown
-
Notifications
You must be signed in to change notification settings - Fork 1
/
order complete.html
67 lines (61 loc) · 1.86 KB
/
order complete.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
<!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>Order Complete</title>
<style>
body {
display: flex;
justify-content:center;
align-items: center;
}
#topbox {
width: 380px;
height: 650px;
/* border: 1px solid black; */
margin-top: 70px;
}
#top {
width: 100%;
height: 70px;
border-bottom: 1px solid #949494;
}
#afterpay {
height: 26px;
width: 105px;
}
#afterpay ~ p {
font-family: 'Titillium Web', sans-serif;
margin-top: 5px;
}
#btn {
width: 100%;
height: 55px;
border: 0px solid white;
font-weight:bold ;
margin-top: 20px;
border-radius: 10px;
cursor: pointer;
}
#copy {
text-align: center;
margin-top: 310px;
cursor: pointer;
}
</style>
</head>
<body>
<div id="topbox">
<div id="top">
<img id="afterpay" src="https://www.bobbibrowncosmetics.com/media/images/checkout/afterpay-logo-black.png" alt="">
<p>Pay in 4. Always interest-free.</p>
</div>
<h1 style="font-family: 'Titillium Web', sans-serif;margin-top: 40px;">Order Complete</h1>
<p style="font-family: 'Titillium Web', sans-serif;margin-top: 35px;">Your Afterpay order session was closed. Please return to Bobbi Brown to continue.</p>
<button id="btn">Return</button>
<div id="copy"><p>@2022Afterpay Terms Privacy Policy </p></div>
</div>
</body>
</html>