-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (49 loc) · 1.74 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
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<link rel="shortcut icon" type="image/x-icon" href="../public/fevicon.jpeg">
<title>Email Validator</title>
</head>
<body>
<header>
<nav>
<div class="logo">
<a href="./index.html" alt = "Home">
<img src="./public/fevicon.jpeg" alt="Logo">
<span>Email Validator</span>
</a>
</div>
<ul>
<ul>
<li><a href="/index.html" >Home</a></li>
<li><a href="./pages/About-me.html" >About Me</a></li>
<li><a href="./pages/Contact-me.html" >Contact Me</a></li>
</ul>
</ul>
</nav>
</header>
<main>
<div class="container">
<h1>Enter Your Email</h1>
<form id="emailForm" method="post" action="./validate-email.php">
<input type="text" id="username" name="username" placeholder="Enter your email to validate" required
autocomplete="email">
<input id="submitBtn" class="btn" type="submit" value="Submit">
</form>
</div>
<div class="container">
<h2>Email Validation Results</h2>
<div id="resultCont" class="result-container">
<p>Your results will show here</p>
</div>
</div>
</main>
<footer>
© 2024 Muhammad Tanveer Abbas | All Rights Reserved
</footer>
<script src="./script.js"></script>
</body>
</html>