-
Notifications
You must be signed in to change notification settings - Fork 0
/
forms.html
31 lines (29 loc) · 899 Bytes
/
forms.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">
<link rel="stylesheet" href="styles/forms.css">
<title>Forms</title>
</head>
<body>
<form class="form">
<p class="title">Join newsseller </p>
<div class="flex">
<label>
<input class="input" type="text" placeholder="" required="">
<span>Firstname</span>
</label>
<label>
<input class="input" type="text" placeholder="" required="">
<span>Lastname</span>
</label>
</div>
<label>
<input class="input" type="email" placeholder="" required="">
<span>Email</span>
</label>
<button class="submit">Submit</button>
</form>
</body>
</html>