-
Notifications
You must be signed in to change notification settings - Fork 1
/
input.html
84 lines (77 loc) · 2.46 KB
/
input.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Input</title>
</head>
<body>
<h1>Sample Input</h1>
<!-- <input type="text"><br>
<input type="password"><br>
<input type="submit"><br>
<input type="reset"><br>
<input type="button"><br>
<input type="radio"><br>
<input type="checkbox"><br>
<input type="datetime-local"><br>
<input type="email"><br>
<input type="month"><br>
<input type="number"><br>
<input type="range"><br>
<input type="search"><br>
<input type="tel"><br>
<input type="url"><br>
<input type="week"><br> -->
<!-- <form>
//Cancel
<input type="text" name="" id=""><br>
<input type="password" name="" id=""><br>
<input type="radio"><br>
<input type="radio" name="" id=""><br>
<input type="checkbox" name="" id=""><br>
<input type="checkbox" name="" id=""><br>
<input type="number" name="" id=""><br>
<input type="email" name="" id=""><br>
<input type="reset" value="Reset"><br>
<input type="submit" value="Submit"><br>
</form> -->
<form action="">
<fieldset>
<legend>Input Form : </legend>
<input type="text" placeholder="Nama"> <br>
<input type="text" placeholder="Keterangan">
</fieldset>
</form>
<select name="" id="">
<optgroup label="Label">
<option value="">Satu</option>
<option value="">Dua</option>
<option value="">Tiga</option>
</optgroup>
</select>
<br>
<input type="text" name="" id="" list="isidatalist">
<datalist id="isidatalist">
<option value="">Satu</option>
<option value="">Dua</option>
<option value="">Tiga</option>
</datalist>
<br>
<br>
<fieldset>
<label for="">Nama Lengkap</label><br>
<input type="text"><br>
<br>
<label for="">Alamat</label>
<br><textarea name="" id="" cols="30" rows="10"></textarea>
<br>
<button>Simpan</button>
</fieldset>
<fieldset>
<input type="text" value="Rhesa Prawedha" readonly id="id_peserta_depan" class="inputName">
<input type="text" value="Rhesa Prawedha" disabled id="id_peserta_belakang" class="inputName">
<input type="text" placeholder="Nama Lengkap" required autofocus>
</fieldset>
</body>
</html>