-
Notifications
You must be signed in to change notification settings - Fork 0
/
congratulation.html
51 lines (46 loc) · 2.26 KB
/
congratulation.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<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=Ubuntu&display=swap" rel="stylesheet">
<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=Nunito&family=Ubuntu&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kohl's|Order Placed</title>
<style>
*{
font-family: 'Nunito', sans-serif;
font-family: 'Ubuntu', sans-serif;
}
#congratulation{
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
margin-top: -62px;
/* position: absolute; */
background-color: white;
}
</style>
</head>
<body>
<div style="margin-left: 88%; display: block; margin-top: 15px;">
<a href="./index.html" style="color: black;"> <i class="fas fa-home" style="font-size: 40px;"></i></a>
<a href="./index.html" style="font-size: 30px; color: black; text-decoration: none; margin-top: 10px;">Home</a>
</div>
<div id="congratulation">
<div style="text-align: center; font-weight: 600;">
<h1 style="font-size: 50px;">Congratulations !</h1>
<img src="https://www.pngitem.com/pimgs/m/34-343419_green-check-mark-in-circle-download-png-clipart.png" style="width: 12%; border-radius: 50%;" alt="">
<p style="font-size: 25px;">Your order has been Placed</p>
<p style="font-size: 20px; margin-top: -18px;">Thank you</p>
<img src="https://i0.wp.com/finetechraju.com/wp-content/uploads/2021/08/Best-Emoji-Background-Hd-Images-Download.jpg" style="width: 12%;" alt="">
</div>
</div>
</body>
</html>