forked from FirmanKurniawan/HTML-Projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path12oct
More file actions
105 lines (105 loc) · 2.72 KB
/
12oct
File metadata and controls
105 lines (105 loc) · 2.72 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta htto-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<tittle>Hacktober</tittle>
</head>
<style>
.center {
text-align: center;
}
.profile {
width: 100px;
height: 100px;
border-radius: 50%;
margin: 0 auto;
}
</style>
<body>
<h1><center>Hacktober</center></h1>
<img src="https://tse4.mm.bing.net/th?id=OIP.PP5IEEnD8z-BhtENpt8jjAAAAA&pid=Api&P=0" class="profile" alt="Gambar Profile"> </img> <br> <br> <br>
<div>
<form>
<label>
NIK :
<input type="text" name="nik" placeholder="Masukkan NIK" /> <br />
<br />
</label>
<label>
Nama Lengkap :
<input type="text" name="Nama" placeholder="Nama Lengkap" />
</label>
<br />
<br />
<label>
Alamat :
<input type="text" name="Alamat" placeholder="Alamat" />
</label>
<br />
<br />
<label>
Tanggal lahir :
<input type="text" Alamat="tanggal_lahir" placeholder="TTL" />
</label>
<br />
<br />
Jenis Kelamin : <br />
<input type="radio" name="jk" value="Laki-Laki" /> Laki-Laki <br />
<input type="radio" name="jk" value="Perempuan" /> Perempuan <br />
<br />
<label>
Nama Ayah :
<input type="text" name="nama_ayah" placeholder="Nama Ayah" />
</label>
<br />
<label>
Nama Ibu :
<input type="text" name="nama_ibu" placeholder="Nama Ibu" /> </input>
</label>
<br /> <br />
<label>
Agama :
<select name="agama">
<option value="Islam">Islam</option>
<option value="Kristen">Kristen</option>
<option value="Katolik">katolik</option>
<option value="Budha">Budha</option>
<option value="Hindu">Hindu</option>
</select>
</label>
<br />
<br /> <br />
<input type="submit" value="Daftar" />
</form>
</div>
</br>
<table border="1">
<tr>
<th>No</th>
<th>Nama Dosen</th>
<th>Mata kuliah</th>
</tr>
<tr>
<td>1</td>
<td>Seno Muhammad</td>
<td>Statistik</td>
</tr>
<tr>
<td>2</td>
<td>Carla Chan</td>
<td>Hukum Bisnis</td>
</tr>
<tr>
<td>3</td>
<td>Sasmita Nur</td>
<td>Komunikasi</td>
</tr>
<tr>
<td>4</td>
<td>Alex Kurniawan</td>
<td>Auditing</td>
</table>
</body>
</html>