-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmail.html
75 lines (68 loc) · 2.03 KB
/
mail.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Certificate Award</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
margin: 0;
padding: 0;
}
.container {
max-width: 600px;
margin: 20px auto;
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
h1 {
color: #333;
text-align: center;
}
p {
color: #555;
line-height: 1.5;
margin: 0;
}
.certificate {
margin-top: 30px;
text-align: center;
}
.certificate img {
width: 300px;
height: auto;
}
.footer {
margin-top: 30px;
text-align: left;
color: #888;
}
.event{
color: #ff0000;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<h1>Participation Certificate</h1>
<p>Dear [Recipient's Name],</p>
<p>Congratulations on participating in the <span class="event">VITB Got Talent</span> at our college annual fest. We appreciate your enthusiasm and dedication.</p>
<p>Attached to this email, you will find the participation certificates for the team members:</p>
<ul>
<li>[Team Member 1]</li>
<li>[Team Member 2]</li>
</ul>
<p>If you have any questions or need further assistance, please feel free to contact us.</p>
<div class="footer">
<p>Best regards,</p>
<p>Ayush Pandey</p>
<p>President, Linpack Club</p>
</div>
</div>
</body>
</html>