-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (91 loc) · 3.65 KB
/
index.html
File metadata and controls
95 lines (91 loc) · 3.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Email Validator</title>
<link href="https://cdn.jsdelivr.net/npm/remixicon@4.3.0/fonts/remixicon.css" rel="stylesheet" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- div container -->
<div class="container">
<!-- statrting of navigation bar -->
<!-- <span class="clicky" onclick="openNav()">☰</span> -->
<nav class="nav-bar ">
<!-- logo -->
<div class="logo"><img src="Img/logo.png" alt="logo" />
<h2 class="logo-name">evalid.com</h2>
</div>
<!-- end of logo -->
<span class="clicky" onclick="openNav()">☰</span>
<!-- <i class="ri-menu-fold-4-line clicky" onclick="openNav()"></i> -->
<div class="navigation">
<ul class="list">
<li><a href="#">
<h4 class="active">Home</h4>
</a></li>
<li><a href="#">
<h4>About</h4>
</a></li>
<li><a href="#">
<h4>Contact</h4>
</a></li>
</ul>
</div>
</nav>
<!-- end of navigation bar -->
<!-- starting of main -->
<div id="main" class="main">
<!-- left or top div -->
<div id="left" class="left">
<h1 class="heading">Email <span class="secondary-text">Validator</span> Tool</h1>
<h2 class="heading">Check If the enterred email address exists or not.</h2>
<!-- starting of form -->
<form class="space" action="/submit" method="post">
<div class="input-element">
<input type="text" id="text" class="text-box" value="" placeholder="Enter the email address"
required />
<input type="submit" id="submit" class="btn" value="Validate" />
<input type="button" id="clear" class="btn" value="Clear" />
</div>
</form>
<!-- end of form -->
<!-- results -->
<div id="result" class="result">
<h3 id="default-text">Your results will be shown here...</h3>
</div>
<!-- end of results -->
</div>
<!-- end of left or top div -->
<!-- right or bottom div -->
<div class="right">
<img src="./Img/valid.jpg" alt="image">
</div>
<!-- end of right or bottom div -->
</div>
<!-- end of main -->
<!-- starting of fullscreen bar -->
<div id="myNav" class="overlay">
<span class="closebtn" onclick="closeNav()">×</span>
<div class="overlay-content">
<a href="#main" onclick="closeNav()">Home</a>
<a href="#">About</a>
<a href="#">Contact</a>
</div>
</div>
<!-- end of fullscreen bar -->
</div>
<!-- end of container -->
<script>
function openNav() {
document.getElementById("myNav").style.width = "100%";
}
function closeNav() {
document.getElementById("myNav").style.width = "0%";
}
</script>
<script src="script.js"></script>
<!-- end of scripting tag -->
</body>
</html>