-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathindex.html
31 lines (26 loc) · 1 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
<!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>Login form style google</title>
</head>
<body>
<div class="l-form">
<form action="" class="form">
<h1 class="form__title">Sign In</h1>
<div class="form__div">
<input type="text" class="form__input" placeholder=" ">
<label for="" class="form__label">Email</label>
</div>
<div class="form__div">
<input type="password" class="form__input" placeholder=" ">
<label for="" class="form__label">Password</label>
</div>
<input type="submit" class="form__button" value="Sign In">
</form>
</div>
</body>
</html>