-
Notifications
You must be signed in to change notification settings - Fork 115
/
tugas.html
126 lines (126 loc) · 5.16 KB
/
tugas.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!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>Tugas</title>
<style>
table{
height: 230px;
width: 22rem;
/* background-color: aqua; */
text-align: left;
}
input{
/* background-color: aqua; */
border-bottom: black;
}
</style>
</head>
<body>
<div class="body">
<a href="tugas.html"><img src="contohGambar.png" alt="" style="width: 7rem;"></a>
<p>Wonderful Indonesia</p>
<div class="table-form">
<form action="">
<table border="5px" cellspacing="0" cellpadding="5">
<tr>
<th colspan="2">
<b style="font-size: 3rem; text-align: center">Biodata</b>
</th>
</tr>
<tr>
<th>Username</th>
<td>
<center>
<input type="username" cellpadding="5" name="Username" style="width: 14rem;" placeholder="input....">
</center>
</td>
</tr>
<tr>
<th>Password</th>
<td>
<center>
<input type="password" name="Username" style="width: 14rem;" placeholder="input....">
</center>
</td>
</tr>
<tr>
<th>Nim</th>
<td>
<center>
<input type="text" name="Nim" style="width: 14rem;" placeholder="input....">
</center>
</td>
</tr>
<tr>
<th>Kelas</th>
<td>
<center>
<select name="Kelas" id=""style="width: 14rem; ">
<option value="select">select your option</option>
<option value="1A">1A</option>
<option value="1B">1B</option>
<option value="1C">1C</option>
<option value="1D">1D</option>
<option value="1E">1E</option>
<option value="1F">1F</option>
<option value="1G">1G</option>
<option value="1H">1H</option>
<option value="1I">1I</option>
</select>
</center>
</td>
</tr>
<tr>
<th>Kelamin</th>
<td>
<center>
<input type="radio" name="radio">Laki-laki
<input type="radio" name="radio">Perempuan
</center>
</td>
</tr>
<tr>
<th>Hobby</th>
<td>
<center>
<input type="checkbox" name="ngoding">ngoding
<input type="checkbox" name="rebahan">rebahan
</center>
</td>
</tr>
<tr>
<th>Ketentuan</th>
<td>
<label for="">
<p>Ketentuan yang harus diperhatikan :</p>
<ol style="margin-left: -1rem;">
<li>Lorem ipsum dolor sit amet.</li>
<li>Lorem ipsum dolor sit amet.</li>
<li>Lorem ipsum dolor sit amet.</li>
</ol>
</label>
</td>
</tr>
<tr>
<td colspan="2">
<center>
<a href="#">
<input type="submit" value="submit" style="border-color: black; background-color: greenyellow;">
</a>
</center>
</td>
</tr>
</table>
</form>
<h3 style="text-align: cemter;">Follow Me</h3>
<ul>
<li>Instagram : <a href="https://www.instagram.com/arvandha121" target="_blank">Klik Disini</a></li>
<li>Github : <a href="https://github.com/arvandha121" target="_blank">Klik Disini</a></li>
</ul>
</div>
</div>
</body>
</html>