-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (29 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--=============== CSS ===============-->
<link rel="stylesheet" href="assets/css/styles.css">
<title>Modern input field - Bedimcode</title>
</head>
<body>
<div class="form">
<form action="" class="form__content">
<div class="form__box">
<input type="text" class="form__input" placeholder="Enter Name">
<label for="" class="form__label">ENTER NAME</label>
<div class="form__shadow"></div>
</div>
<div class="form__box">
<input type="email" class="form__input" placeholder="Enter Email">
<label for="" class="form__label">ENTER EMAIL</label>
<div class="form__shadow"></div>
</div>
<div class="form__button">
<input type="Submit" class="form__submit" value="Sign Up">
</div>
</form>
</div>
</body>
</html>