-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathemail.html
126 lines (124 loc) · 3.89 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
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Email Confirmation</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
margin: 0;
padding: 20px;
}
.content {
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.05);
padding: 20px;
margin: 0 auto;
max-width: 600px;
}
img {
max-width: 100%;
height: auto;
border-radius: 8px;
display: block;
margin-bottom: 20px;
}
h1 {
color: #0056b3;
text-align: center;
margin-top: 0;
}
p {
font-size: 16px;
line-height: 1.5;
margin-top: 0;
}
footer {
text-align: center;
font-size: 12px;
color: #777;
padding-top: 20px;
}
ul {
list-style: none;
padding: 0;
text-align: center;
}
li {
display: inline;
margin-right: 10px;
}
a {
color: #0056b3;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.social-icons {
display: flex;
justify-content: center;
align-items: center;
margin: 0;
padding: 0;
margin-top: 1rem;
}
.social-icons a {
display: inline-block;
margin: 0 5px;
}
.social-icon {
vertical-align: middle;
width: 24px;
height: 24px;
}
</style>
</head>
<body>
<div class="content">
<img src="cid:[email protected]" alt="OPTICA STUDENT BRANCH" />
<!-- <h1>{{title}} 🚀</h1> -->
<p>
Thank you for your registration.
<br><br>
Your registration has been confirmed! We are delighted to welcome you to JSCOP 6.0.
This year, you will enjoy numerous new activities, fun games, and much more, all designed to ensure
you have a fantastic time. Mark your calendar and prepare to join us for the event on April 27, 2024.
We look forward to seeing you there!
<br><br>
For any queries, please contact:
<br>
President, Aman Tripathi: 81156 10105
<br>
Treasurer, Mridul Saraswat: 89239 69236
<br><br>
or you can visit our <a href="https://jscop.jiitopticachapter.com/">website</a>
</p>
<footer>
Find Us here:
<div class="social-icons">
<a href="https://www.linkedin.com/company/jiitopticachapter/">
<img src="./Public/linkedin.png" alt="LinkedIn" class="social-icon"/>
</a>
<a href="https://www.facebook.com/jiitopticachapter/">
<img src="./Public/facebook.png" alt="Facebook" class="social-icon"/>
</a>
<a href="https://github.com/jiitopticachapter">
<img src="./Public/Github.png" alt="GitHub" class="social-icon"/>
</a>
<a href="https://www.instagram.com/jiitopticachapter/">
<img src="./Public/insta.png" alt="Instagram" class="social-icon"/>
</a>
<a href="https://www.youtube.com/@jiitopticachapter7634">
<img src="./Public/youtube.png" alt="YouTube" class="social-icon"/>
</a>
</div>
</footer>
</div>
</body>
</html>