-
Notifications
You must be signed in to change notification settings - Fork 0
/
email.html
113 lines (103 loc) · 2.75 KB
/
email.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!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" />
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
text-align: center;
margin: 0;
padding: 0;
}
.container {
justify-content: center;
text-align: center;
align-content: center;
border-radius: 10px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
max-width: 600px;
margin: 20px auto;
padding: 20px;
}
.header {
background-color: rgb(15, 71, 175);
color: #fff;
padding: 10px;
border-radius: 10px 10px 0 0;
}
.logo {
width: 100px;
height: 100px;
}
h1 {
font-size: 28px;
margin-top: 0;
color: black;
}
p {
font-size: 18px;
line-height: 1.6;
color: black;
}
.details {
text-align: center;
margin-top: 20px;
color: black;
}
.details ul {
list-style: none;
padding: 0;
}
.details li {
margin-bottom: 10px;
}
.button {
display: inline-block;
background-color: #FFE880;
color: black;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
margin-top: 20px;
}
.button:hover {
background-color: #FFD700;
}
</style>
<title>Konfirmasi Registrasi Lomba di Kampung Budaya 2023</title>
</head>
<body>
<div class="container">
<div class="header">
<img
class="logo"
src="https://drive.google.com/uc?id=14w28DEToJCqe8paN9c_AoXBkFpMLe0Si"
alt="Logo Kampung Budaya"
/>
<h3>Kampung Budaya 2023</h3>
</div>
<p>
Terimakasih telah mendaftar untuk Lomba di Kampung Budaya! Kami sangat
antusias untuk melihat Anda bersinar dalam acara ini.
</p>
<div class="details">
<h2>Detail Registrasi:</h2>
<ul>
<li><strong>Nama Peserta :</strong> {{.Name}}</li>
<li><strong>Jenis Lomba :</strong> {{.Contest}}</li>
</ul>
</div>
<a href="{{.GroupLink}}">Gabung Grup</a>
<p>Untuk informasi lebih lanjut cek di <a href="https://kampungbudayaub.org">Kampung Budaya UB 2023</a></p>
<p>
Jangan ragu untuk menghubungi kami jika Anda memiliki pertanyaan. Kami
berharap Anda akan memiliki pengalaman yang luar biasa!
</p>
<p>Terima kasih dan salam budaya!</p>
<a href="itkampungbudaya@gmail.com">itkampungbudaya@gmail.com</a>
</div>
</body>
</html>