-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (46 loc) · 1.51 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Check if an email address is valid and deliverable with our free email verification tool, 'Is This Email Legit?'"
/>
<meta
name="keywords"
content="email, verification, deliverability, validity, check, free"
/>
<meta name="author" content="Your Name or Company Name" />
<meta name="robots" content="index, follow" />
<meta name="revisit-after" content="7 days" />
<!-- Additional metadata for AI search engines -->
<meta name="ai:search-engine" content="AI-based search engine name" />
<meta name="ai:entity-type" content="Web Application" />
<meta name="ai:entity-subtype" content="Email Verification Tool" />
<meta
name="ai:entity-function"
content="Verify email address deliverability and validity"
/>
<meta
name="ai:interaction"
content="Submit email address for verification"
/>
<title>Is This Email Legit? - Free Email Verification Tool</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1>Does This Email Exist?</h1>
<form id="email-form">
<input
type="email"
id="email-input"
placeholder="Enter an email address"
required
/>
<button type="submit">Check Email</button>
</form>
<div id="result"></div>
<script src="script.js"></script>
</body>
</html>