0% found this document useful (0 votes)
31 views3 pages

DOCTYPE

The document contains a simple registration form with fields for entering a first name, last name, email, password, gender, country, date and place of birth, language, and social media. The form uses various input elements like text fields, radio buttons, dropdowns, checkboxes, and submit/reset buttons laid out in a table for easy formatting.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
31 views3 pages

DOCTYPE

The document contains a simple registration form with fields for entering a first name, last name, email, password, gender, country, date and place of birth, language, and social media. The form uses various input elements like text fields, radio buttons, dropdowns, checkboxes, and submit/reset buttons laid out in a table for easy formatting.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

<!

DOCTYPE html>
<html>
<head>
<title>Membuat Form</title>
</head>
<body bgcolor="pink" style="font-family:'Times New Roman'; font-size:15pt;">
<h1 align="center">FORM SIMPLE</h1>
<form>
<table bgcolor="gray" align ="center">
<tr>
<td>Nama Depan</td>
<td>:</td>
<td><input type ="text" size="30 " nama="txtNama Depan" id="idNa
ma Depan"></td>
</tr>

<tr>
<td>Nama Belakang</td>
<td>:</td>
<td><input type ="text" size="30 " nama="txtNama Belakang" id="i
dNama Belakang"></td>
</tr>

<tr>
<td>E-mail</td>
<td>:</td>
<td><input type ="text" size="30 " nama="txemail" id="idemail"><
/td>
</tr>

<tr>
<td>Password</td>
<td>:</td>
<td><input type ="password" size="30 " nama="txtpass" id="idpass
"></td>
</tr>

<tr>
<td>Konfir Password</td>
<td>:</td>
<td><input type ="password" size="30 " nama="txtpass" id="idpass
"></td>
</tr>

<tr>
<td>Jenis Kelamin</td>
<td>:</td>
<td>
<input type =radio name="jenkel">Laki-Laki
<input type =radio name="jenkel">Perempuan
</td>
</tr>

<tr>
<td>Negara</td>
<td>:</td>
<td><select name="sltnegara">
<option>Indonesia</option>
<option>Inggris</option>
<option>Malaysia</option>
<option>Singapura</option>
<option>Jepang</option>
<option>etc</option>
</select>
</td>
</tr>

<tr>
<td>Tempat/Tanggal Lahir</td>
<td>:</td>
<td><Input type="text" size="30" name="txttempat" id="idtempat">
<input type="date"></td>
</tr>

<tr>
<td>Bahasa</td>
<td>:</td>
<td><select name="sltbahasa">
<option>Indonesia</option>
<option>Inggris</option>
<option>Malaysia</option>
<option>Singapura</option>
<option>Jepang</option>
<option>etc</option>
</select>
</td>
</tr>

<tr>
<td>Sosmed</td>
<td>:</td>
<td><input type="checkbox" name="cbososmed1">Facebook
<input type="checkbox" name="cbososmed1">Instagram
<input type="checkbox" name="cbososmed1">Twitter
<input type="checkbox" name="cbososmed1">Etc
</td>
</tr>

<tr>
<td colspan="3" align="center">
<input type="submit" value="Daftar">
<input type="reset" value="Reset">
</td>
</tr>
</table>
</form>
</body>
</html>

You might also like