-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (69 loc) · 2.89 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
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
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="main">
<div style="display: flex; justify-content: center;">
<h1>Form Pendaftaran</h1></div>
<div style="display: flex; justify-content: center;">
<form action="/action page.php">
<label for="fname">Nama Depan:</label><br>
<input type="text" id="fname"name="fname" placeholder="Galuh"><br><br>
<label for="fname">Nama Belakang:</label><br>
<input type="text" id="fname"name="fname" placeholder="dawlius suhendra"><br><br>
<label for="email">Email:</label><br>
<input type="email" id="email"name="email" placeholder="**********@gmail.com"><br><br>
<label for="age">Umur:</label><br>
<input type="number" id="age"name="age" placeholder="18"><br><br>
<label for="fnma">Jenis Kelamin</label><br>
<select name = "dropdown">
<option value = "Man" selected>Laki-laki</option>
<option value = "Woman">Perempuan</option>
</select>
<br><br><br>
<label for="fname">Status:</label>
<br><br>
<input type="radio" id="Status" name="fav_language" value="Menikah">
<label for="Menikah">Menikah</label>
<input type="radio" id="Status" name="fav_language" value="Lajang">
<label for="Lajang">Lajang</label><br>
<br><br>
<label for="fname">Makakan Kesukaan:</label><br><br>
<input type="checkbox" id="menu1" name="menu1">
<label for="menu1"> Mie Ayam</label>
<input type="checkbox" id="menu2" name="menu2">
<label for="menu1"> Bakso</label>
<input type="checkbox" id="menu3" name="menu3">
<label for="menu3"> Ayam Geprek</label><br><br><br>
<label for="fname">Minuman Kesukaan:</label><br><br>
<input type="checkbox" id="menu1" name="menu1">
<label for="menu1"> Teh</label>
<input type="checkbox" id="menu2" name="menu2">
<label for="menu2"> Kopi</label>
<input type="checkbox" id="menu4" name="menu4">
<label for="menu4"> Susu</label><br><br>
<label for="menu4"> Jus Kesukaan: </label><br><br>
<input type="checkbox" id="menu2" name="menu2">
<label for="menu2"> Mangga</label>
<input type="checkbox" id="menu2" name="menu2">
<label for="menu2"> Jeruk</label>
<input type="checkbox" id="menu2" name="menu2">
<label for="menu2"> Pokat</label><br><br>
<input type = "button" name = "ok" value = "Kirim" />
</form>
<style>
.main {
background-image: linear-gradient(rgba(115, 121, 117, 0.75), rgba(129, 182, 129, 0.75));
background-size: cover;
background-position: center;
background-color: rgb(149, 161, 149);
}
</style>
<a href="/tugas1.html">tugas1</a>
</body>
</html>