-
Notifications
You must be signed in to change notification settings - Fork 1
/
form.html
25 lines (23 loc) · 952 Bytes
/
form.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form - Sample</title>
</head>
<body>
<h1>Sample Form</h1>
<form action="" method="post">
<input type="text" name="" id="" placeholder="Nama Lengkap" required autofocus><br>
<input type="text" placeholder="Cita cita"><br>
<input type="tel" name="" id="" placeholder="No. HP"><br>
<input type="email" name="" id="" autocomplete="on" placeholder="Your Email"><br>
<input type="text" placeholder="Site : ex. Sample.com"><br>
<textarea name="" id="" cols="30" rows="10" placeholder="Alamat"></textarea><br>
<input type="file" name="" id="" accept="image/*"><br>
<input type="range" name="" id="" min="1" max="10" step="1">
<input type="reset" value="Reset">
<button>Simpan</button>
</form>
</body>
</html>