-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththankyou.html
69 lines (60 loc) · 2.24 KB
/
thankyou.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="css/styleindex.css">
<link rel="icon" href="image/glamoras.jpg" type="image/jpeg"> <!-- Favicon -->
<title>Terima Kasih</title>
<!-- Tambahkan font awesome untuk ikon ceklis -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
.checkmark {
font-size: 100px;
color: #28a745; /* Warna hijau untuk ceklis */
text-align: center;
margin: 20px 0;
}
.review-btn {
display: inline-block;
padding: 10px 30px;
background-color: #0077b6; /* Warna tombol */
color: white;
font-size: 1.2rem;
font-weight: bold;
border: none;
border-radius: 5px;
text-decoration: none;
margin-top: 20px;
transition: background-color 0.3s ease;
}
.review-btn:hover {
background-color: #005f8c; /* Warna saat hover */
}
footer {
background-color: #f8f9fa;
padding: 20px 0;
}
</style>
</head>
<body>
<header class="bg-primary text-white text-center py-4">
<h1>Terima Kasih</h1>
</header>
<section class="container my-4 text-center">
<div class="checkmark">
<i class="fas fa-check-circle"></i>
</div>
<h2>Pesanan Anda Telah Diterima</h2>
<p>Terima kasih atas pesanan Anda. Anda akan segera menerima email konfirmasi.</p>
<p>Nomor Pesanan: <strong>#123456789</strong></p>
<!-- Tombol menuju halaman review -->
<a href="review.html" class="review-btn">Tulis Review</a>
</section>
<footer class="text-center">
<p>© 2024 Glamora. All rights reserved.</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>