-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.html
More file actions
376 lines (350 loc) · 13.5 KB
/
Copy pathdemo.html
File metadata and controls
376 lines (350 loc) · 13.5 KB
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Email Verifier and Predictor - Live Demo</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22%2300aaff%22><path d=%22M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-8 6.5L4 6h16l-8 4.5zM4 18V8l8 5 8-5v10H4z%22/></svg%3E">
<style>
:root {
--primary-color: #00aaff;
--primary-hover-color: #0088cc;
--accent-color: #ff3d71;
--secondary-accent-color: #4ade80;
--text-color: #e0e0f0;
--heading-color: #ffffff;
--muted-text-color: #a0a0c0;
/* Removed --bg-dark and --bg-medium as html and body will handle overall background */
--glass-bg: rgba(40, 45, 80, 0.7);
--glass-border-color: rgba(255, 255, 255, 0.12);
--glass-shadow-color: rgba(0, 0, 0, 0.4);
--blur-intensity: 10px;
--card-border-radius: 18px;
--font-family: 'Poppins', sans-serif;
--transition-speed: 0.3s;
/* ---- New Background Variables from previous example ---- */
/* Base HTML background color */
--html-bg-color: #0A0C12; /* Very dark, slightly desaturated blue */
/* Glow Gradient Variables (subtle and widespread for HTML) */
--glow-center-color: rgba(60, 80, 140, 0.1); /* Subtle blue core of the glow */
--glow-mid-color: rgba(40, 55, 100, 0.06); /* Fainter transition for the glow */
--glow-edge-color: rgba(15, 20, 40, 0); /* Fully transparent edge */
--html-glow-gradient: linear-gradient( /* Renamed to avoid conflict if an old one was used elsewhere */
145deg,
var(--glow-edge-color) 0%,
var(--glow-mid-color) 35%,
var(--glow-center-color) 50%,
var(--glow-mid-color) 65%,
var(--glow-edge-color) 100%
);
/* Grid Pattern Variables for BODY */
--small-grid-size: 20px;
--small-grid-line-color: rgba(60, 70, 100, 0.07);
--large-grid-size: calc(var(--small-grid-size) * 5); /* e.g., 100px */
--large-grid-line-color: rgba(75, 85, 115, 0.1);
/* ---- End of New Background Variables ---- */
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
/* Apply the new subtle glow background to HTML */
background-color: var(--html-bg-color);
background-image: var(--html-glow-gradient);
background-size: 300% 300%;
animation: glowingRootBackground 25s ease-in-out infinite alternate;
}
@keyframes glowingRootBackground { /* Renamed from glowingBodyBackground */
0% { background-position: 0% 50%; }
100% { background-position: 100% 50%; }
}
body {
font-family: var(--font-family);
/* Body background is transparent to show HTML's glow */
background-color: transparent;
/* Apply the layered grid pattern to BODY */
background-image:
linear-gradient(to right, var(--small-grid-line-color) 1px, transparent 1px),
linear-gradient(to bottom, var(--small-grid-line-color) 1px, transparent 1px),
linear-gradient(to right, var(--large-grid-line-color) 1px, transparent 1px),
linear-gradient(to bottom, var(--large-grid-line-color) 1px, transparent 1px);
background-size:
var(--small-grid-size) var(--small-grid-size),
var(--small-grid-size) var(--small-grid-size),
var(--large-grid-size) var(--large-grid-size),
var(--large-grid-size) var(--large-grid-size);
background-attachment: fixed; /* Important for the grid to stay put */
background-position: center; /* Center the grid */
color: var(--text-color);
line-height: 1.7;
font-size: 16px;
overflow-x: hidden;
padding-bottom: 50px; /* Space for footer */
}
.container {
width: 90%;
max-width: 1100px;
margin: 0 auto;
padding: 20px 15px;
}
header {
padding: 1.5rem 0;
text-align: center;
border-bottom: 1px solid var(--glass-border-color);
margin-bottom: 40px;
background: rgba(26, 26, 46, 0.5);
backdrop-filter: blur(5px);
position: relative; /* Ensure header is above the body grid */
z-index: 10;
}
.logo-main {
font-size: 2rem;
font-weight: 700;
color: var(--heading-color);
display: flex;
align-items: center;
justify-content: center;
letter-spacing: 1px;
}
.logo-main svg {
width: 40px;
height: 40px;
margin-right: 12px;
fill: var(--primary-color);
}
.main-content {
text-align: center;
position: relative; /* Ensure content is above the body grid */
z-index: 5;
}
.main-content h1 {
font-size: 2.8rem;
font-weight: 700;
color: var(--heading-color);
margin-bottom: 20px;
line-height: 1.3;
}
.main-content h1 .highlight {
color: var(--secondary-accent-color);
display: block;
margin-top: 5px;
}
.main-content .subtitle {
font-size: 1.15rem;
color: var(--muted-text-color);
max-width: 750px;
margin: 0 auto 30px auto;
font-weight: 300;
}
.main-content .trial-notice {
background-color: rgba(255, 193, 7, 0.1);
color: #ffc107;
padding: 10px 15px;
border-radius: 8px;
border: 1px solid rgba(255, 193, 7, 0.3);
margin: 0 auto 30px auto;
max-width: 600px;
font-weight: 500;
font-size: 0.95rem;
}
.iframe-wrapper {
background: var(--glass-bg);
backdrop-filter: blur(var(--blur-intensity));
-webkit-backdrop-filter: blur(var(--blur-intensity));
padding: 20px;
border-radius: var(--card-border-radius);
box-shadow: 0 10px 40px var(--glass-shadow-color);
border: 1px solid var(--glass-border-color);
max-width: 900px;
margin: 0 auto 40px auto;
overflow: hidden;
}
.iframe-container {
width: 100%;
height: 800px;
border-radius: 10px;
overflow: hidden;
position: relative;
}
.iframe-container iframe {
width: 100%;
height: 100%;
border: none;
}
.iframe-note {
font-size: 0.9rem;
color: var(--muted-text-color);
margin-top: 15px;
}
.actions-panel {
margin-top: 50px;
padding: 40px 20px;
background: rgba(26, 26, 46, 0.6);
border-radius: var(--card-border-radius);
border-top: 1px solid var(--glass-border-color);
border-bottom: 1px solid var(--glass-border-color);
}
.actions-panel h2 {
font-size: 2rem;
color: var(--heading-color);
margin-bottom: 15px;
}
.actions-panel p {
color: var(--muted-text-color);
margin-bottom: 30px;
max-width: 650px;
margin-left: auto;
margin-right: auto;
}
.action-buttons {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}
.action-btn {
display: inline-block;
padding: 14px 30px;
border-radius: 30px;
text-decoration: none;
font-weight: 600;
font-size: 1rem;
transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
min-width: 220px;
text-align: center;
}
.action-btn.primary {
background-image: linear-gradient(to right, var(--primary-color), var(--accent-color));
color: white;
box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}
.action-btn.primary:hover {
transform: translateY(-3px) scale(1.02);
box-shadow: 0 8px 25px rgba(255, 61, 113, 0.4);
}
.action-btn.secondary {
background-color: transparent;
color: var(--primary-color);
border: 2px solid var(--primary-color);
}
.action-btn.secondary:hover {
background-color: var(--primary-color);
color: white;
transform: translateY(-3px);
}
footer {
text-align: center;
padding: 30px 0;
font-size: 0.9rem;
color: var(--muted-text-color);
border-top: 1px solid var(--glass-border-color);
background: rgba(10, 10, 24, 0.7);
position: relative;
z-index: 10; /* Ensure footer is above the body grid */
margin-top: 60px;
}
footer a {
color: var(--primary-color);
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
/* Responsive */
@media (max-width: 768px) {
.main-content h1 {
font-size: 2.2rem;
}
.main-content .subtitle {
font-size: 1rem;
}
.iframe-container {
height: 500px;
}
.action-buttons {
flex-direction: column;
align-items: center;
}
.action-btn {
width: 100%;
max-width: 300px;
}
.logo-main {
font-size: 1.6rem;
}
.logo-main svg {
width: 32px;
height: 32px;
}
}
@media (max-width: 480px) {
.main-content h1 {
font-size: 1.9rem;
}
.main-content h1 .highlight {
font-size: 1.7rem;
}
.iframe-wrapper {
padding: 10px;
}
}
</style>
</head>
<body>
<header>
<div class="container">
<div class="logo-main">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<path d="M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6zm-2 0l-8 5-8-5h16zm0 12H4V8l8 5 8-5v10z"/>
</svg>
AI Email Verification - Dataoorts
</div>
</div>
</header>
<div class="container">
<main class="main-content">
<h1>Intelligent Email Verification & Prediction <span class="highlight">⚡ Live Demo ⚡</span></h1>
<p class="subtitle">
Instantly check email validity and let our AI predict associated data like names.
This powerful tool helps you clean lists, reduce bounces, and enrich your contact information.
</p>
<div class="trial-notice">
<strong>Limited Trial:</strong> This is a free, interactive demo with usage limits. For full features, batch processing, and API access, please explore our complete solution.
</div>
<div class="iframe-wrapper">
<div class="iframe-container">
<iframe
src="https://rjvishwa-test.hf.space/tester?__theme=dark"
frameborder="0"
allowfullscreen
title="AI Email Verifier and Data Predictor Tool">
</iframe>
</div>
<p class="iframe-note">Interactive Demo By HG</p>
</div>
<div class="actions-panel">
<h2>Ready for More?</h2>
<p>Take your email intelligence to the next level with our comprehensive platform. Unlock batch uploads, API integration, and enhanced capabilities.</p>
<div class="action-buttons">
<a href="https://cloud.dataoorts.com/aicrm_mails" target="_blank" rel="noopener noreferrer" class="action-btn primary">
Access Full Platform
</a>
<a href="https://docs.dataoorts.com/docs/ai-crm/" target="_blank" rel="noopener noreferrer" class="action-btn secondary">
API Docs
</a>
</div>
</div>
</main>
</div>
<footer>
<div class="container">
<p>© 2025 AI Email Verification by <a href="https://dataoorts.com" target="_blank" rel="noopener noreferrer">Dataoorts</a>. All Rights Reserved.</p>
<p>Experience the future of email data enrichment.</p>
</div>
</footer>
</body>
</html>