-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (28 loc) · 1.05 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Email validation - Danila</title>
<!-- ---- Remixicons ---- -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet">
<!-- ----CSS---- -->
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body>
<div class="container">
<form action="" class="form" id="form">
<div class="formField">
<label for="" class="formLabel">Email Adress</label>
<input type="email" placeholder="Write your email" required id="email" class="formInput">
<i class="ri-mail-line formIcon"></i>
<div class="formError">
<i class="ri-information-fill"></i>
<span>Invalid email format.</span>
</div>
</div>
</form>
</div>
<!-- ---- Main Js ---- -->
<script src="assets/js/main.js"></script>
</body>
</html>