Clearpaths commited on
Commit
70aa7f9
·
verified ·
1 Parent(s): 9cb3199

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. index.html +327 -19
index.html CHANGED
@@ -1,19 +1,327 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Enhanced Email Template Designer</title>
7
+ <!-- Import Font Awesome for modern icons -->
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <!-- Google Fonts -->
10
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Playfair+Display:wght@700&display=swap" rel="stylesheet">
11
+
12
+ <style>
13
+ :root {
14
+ --primary-blue: #1A3F70;
15
+ --accent-blue: #4379B8;
16
+ --bg-gray: #F4F7F9;
17
+ --text-dark: #2D3748;
18
+ --text-light: #718096;
19
+ --white: #FFFFFF;
20
+ --shadow: 0 10px 25px rgba(0,0,0,0.1);
21
+ --transition: all 0.3s ease;
22
+ }
23
+
24
+ * {
25
+ box-sizing: border-box;
26
+ margin: 0;
27
+ padding: 0;
28
+ }
29
+
30
+ body {
31
+ font-family: 'Inter', sans-serif;
32
+ background-color: var(--bg-gray);
33
+ color: var(--text-dark);
34
+ line-height: 1.6;
35
+ padding: 20px;
36
+ }
37
+
38
+ /* Header Branding Section */
39
+ header {
40
+ max-width: 800px;
41
+ margin: 0 auto 30px auto;
42
+ display: flex;
43
+ justify-content: space-between;
44
+ align-items: center;
45
+ padding: 15px;
46
+ background: var(--white);
47
+ border-radius: 12px;
48
+ box-shadow: var(--shadow);
49
+ }
50
+
51
+ .branding-text {
52
+ font-weight: 700;
53
+ color: var(--primary-blue);
54
+ font-size: 1.1rem;
55
+ }
56
+
57
+ .anycoder-link {
58
+ text-decoration: none;
59
+ color: var(--accent-blue);
60
+ font-size: 0.85rem;
61
+ font-weight: 600;
62
+ transition: var(--transition);
63
+ padding: 8px 16px;
64
+ border: 2px solid var(--accent-blue);
65
+ border-radius: 20px;
66
+ }
67
+
68
+ .anycoder-link:hover {
69
+ background: var(--accent-blue);
70
+ color: white;
71
+ }
72
+
73
+ /* Email Preview Container */
74
+ .email-container {
75
+ max-width: 650px;
76
+ margin: 0 auto;
77
+ background: var(--white);
78
+ border-radius: 16px;
79
+ overflow: hidden;
80
+ box-shadow: var(--shadow);
81
+ border: 1px solid #e2e8f0;
82
+ }
83
+
84
+ /* Email Header */
85
+ .email-header {
86
+ position: relative;
87
+ width: 100%;
88
+ overflow: hidden;
89
+ }
90
+
91
+ .email-header img {
92
+ width: 100%;
93
+ display: block;
94
+ transition: var(--transition);
95
+ }
96
+
97
+ .email-header:hover img {
98
+ transform: scale(1.02);
99
+ }
100
+
101
+ /* Email Body */
102
+ .email-content {
103
+ padding: 40px 50px;
104
+ }
105
+
106
+ .greeting {
107
+ font-family: 'Playfair Display', serif;
108
+ font-size: 24px;
109
+ color: var(--primary-blue);
110
+ margin-bottom: 20px;
111
+ }
112
+
113
+ .body-text {
114
+ font-size: 16px;
115
+ color: var(--text-dark);
116
+ margin-bottom: 25px;
117
+ }
118
+
119
+ .highlight-box {
120
+ background: #f0f4f8;
121
+ border-left: 4px solid var(--primary-blue);
122
+ padding: 20px;
123
+ margin: 25px 0;
124
+ border-radius: 0 8px 8px 0;
125
+ font-style: italic;
126
+ color: var(--primary-blue);
127
+ font-weight: 500;
128
+ }
129
+
130
+ /* Modern Button */
131
+ .cta-button {
132
+ display: inline-block;
133
+ background-color: var(--primary-blue);
134
+ color: var(--white) !important;
135
+ padding: 16px 32px;
136
+ text-decoration: none;
137
+ border-radius: 8px;
138
+ font-weight: 600;
139
+ font-size: 18px;
140
+ transition: var(--transition);
141
+ box-shadow: 0 4px 15px rgba(26, 63, 112, 0.3);
142
+ text-align: center;
143
+ }
144
+
145
+ .cta-button:hover {
146
+ background-color: #255391;
147
+ transform: translateY(-2px);
148
+ box-shadow: 0 6px 20px rgba(26, 63, 112, 0.4);
149
+ }
150
+
151
+ /* Signature Area */
152
+ .signature {
153
+ margin-top: 40px;
154
+ padding-top: 20px;
155
+ border-top: 1px solid #edf2f7;
156
+ }
157
+
158
+ .sig-name {
159
+ font-weight: 700;
160
+ color: var(--primary-blue);
161
+ display: block;
162
+ margin-bottom: 4px;
163
+ }
164
+
165
+ .sig-title {
166
+ font-size: 14px;
167
+ color: var(--text-light);
168
+ }
169
+
170
+ /* Modern Social Icons */
171
+ .social-links {
172
+ display: flex;
173
+ justify-content: center;
174
+ gap: 15px;
175
+ padding: 30px 0;
176
+ background: #fcfcfc;
177
+ }
178
+
179
+ .social-icon {
180
+ width: 40px;
181
+ height: 40px;
182
+ border-radius: 50%;
183
+ background: var(--white);
184
+ display: flex;
185
+ align-items: center;
186
+ justify-content: center;
187
+ color: var(--primary-blue);
188
+ text-decoration: none;
189
+ font-size: 18px;
190
+ transition: var(--transition);
191
+ border: 1px solid #e2e8f0;
192
+ }
193
+
194
+ .social-icon:hover {
195
+ background: var(--primary-blue);
196
+ color: white;
197
+ transform: scale(1.1);
198
+ }
199
+
200
+ /* Footer Branding */
201
+ .email-footer {
202
+ background: #f8fafc;
203
+ text-align: center;
204
+ padding: 40px 20px;
205
+ border-top: 1px solid #e2e8f0;
206
+ }
207
+
208
+ .footer-logo {
209
+ max-width: 300px;
210
+ margin-bottom: 20px;
211
+ opacity: 0.8;
212
+ }
213
+
214
+ .footer-tagline {
215
+ font-size: 13px;
216
+ color: var(--primary-blue);
217
+ font-weight: 600;
218
+ text-transform: uppercase;
219
+ letter-spacing: 1px;
220
+ margin-bottom: 15px;
221
+ display: block;
222
+ }
223
+
224
+ .unsubscribe-link {
225
+ font-size: 12px;
226
+ color: var(--text-light);
227
+ text-decoration: underline;
228
+ cursor: pointer;
229
+ }
230
+
231
+ /* Responsive Design */
232
+ @media (max-width: 600px) {
233
+ .email-content {
234
+ padding: 30px 20px;
235
+ }
236
+ header {
237
+ flex-direction: column;
238
+ gap: 15px;
239
+ text-align: center;
240
+ }
241
+ .greeting {
242
+ font-size: 20px;
243
+ }
244
+ }
245
+ </style>
246
+ </head>
247
+ <body>
248
+
249
+ <header>
250
+ <div class="branding-text">Email Template Enhancer</div>
251
+ <a href="https://huggingface.co/spaces/akhaliq/anycoder" class="anycoder-link" target="_blank">Built with anycoder</a>
252
+ </header>
253
+
254
+ <div class="email-container">
255
+ <!-- Header Image -->
256
+ <div class="email-header">
257
+ <a href="https://udallas.edu/admissions-aid/undergraduate/index.php" target="_blank">
258
+ <img src="https://ugadmis.udallas.edu/www/images/Updated_Email_Header_0823%20(1).jpg" alt="University of Dallas Header">
259
+ </a>
260
+ </div>
261
+
262
+ <!-- Main Content -->
263
+ <div class="email-content">
264
+ <div class="greeting">Hi {{Person-First}},</div>
265
+
266
+ <div class="body-text">
267
+ Congratulations again on your admission to the <strong>University of Dallas</strong>! We are thrilled to have you join our community of scholars.
268
+ </div>
269
+
270
+ <div class="body-text">
271
+ To secure your place in the incoming class and begin your journey, please complete your deposit by <strong>May 1</strong>. This will allow you to get a head start on your new student paperwork.
272
+ </div>
273
+
274
+ <div style="text-align: center; margin: 35px 0;">
275
+ <a href="{{Deposit-Payment-Link}}" class="cta-button">Make Your Deposit Now</a>
276
+ </div>
277
+
278
+ <div class="highlight-box">
279
+ <i class="fa-solid fa-graduation-cap" style="margin-right: 10px;"></i>
280
+ Don’t forget, you’ll also receive a <strong>$1,000 Campus Visit Grant</strong> toward your first-year cost of full-time enrollment at the University of Dallas.
281
+ </div>
282
+
283
+ <div class="signature">
284
+ <p style="margin-bottom: 15px;">Sincerely,</p>
285
+ <div class="sig-name">University of Dallas Admissions</div>
286
+ <div class="sig-title">{{Staff-Assigned-Counselor}}</div>
287
+ </div>
288
+ </div>
289
+
290
+ <!-- Social Media Section -->
291
+ <div class="social-links">
292
+ <a href="https://www.facebook.com/udallas" class="social-icon" target="_blank"><i class="fa-brands fa-facebook-f"></i></a>
293
+ <a href="https://www.instagram.com/universityofdallas/" class="social-icon" target="_blank"><i class="fa-brands fa-instagram"></i></a>
294
+ <a href="https://www.linkedin.com/school/university-of-dallas/" class="social-icon" target="_blank"><i class="fa-brands fa-linkedin-in"></i></a>
295
+ <a href="https://x.com/uofdallas" class="social-icon" target="_blank"><i class="fa-brands fa-x-twitter"></i></a>
296
+ <a href="https://www.youtube.com/@universityofdallas." class="social-icon" target="_blank"><i class="fa-brands fa-youtube"></i></a>
297
+ </div>
298
+
299
+ <!-- Footer Branding -->
300
+ <div class="email-footer">
301
+ <img src="https://ugadmis.udallas.edu/www/images/Admission_Footer_0624.png" alt="University Footer" class="footer-logo">
302
+
303
+ <span class="footer-tagline">The Catholic University for Independent Thinkers</span>
304
+
305
+ <div class="unsubscribe-link">
306
+ <a href="{{UnsubscribeLink}}" style="color: inherit; text-decoration: none;">Unsubscribe from these communications</a>
307
+ </div>
308
+ </div>
309
+ </div>
310
+
311
+ <script>
312
+ // Simple interaction to simulate dynamic content loading
313
+ document.addEventListener('DOMContentLoaded', () => {
314
+ console.log("Email Template Loaded Successfully");
315
+
316
+ // Add a subtle fade-in effect to the container
317
+ const container = document.querySelector('.email-container');
318
+ container.style.opacity = '0';
319
+ container.style.transition = 'opacity 0.8s ease-in';
320
+
321
+ setTimeout(() => {
322
+ container.style.opacity = '1';
323
+ }, 100);
324
+ });
325
+ </script>
326
+ </body>
327
+ </html>