Selasa, 17 April 2012

Belajar HTML Daftar Tag Pada HTML

Dibawah ini adalah beberapa tag dasar yang harus dipahami di HTML

<hmtl> </html> Digunakan untuk membuka/menutup sebuah coding HTML
<head> </head> Informasi umum dari sebuah halaman web
<title> </title> Judul halaman. Terdapat pada head
<body> </body> Settingan atribut untuk seluruh dokumen.

Belajar HTML Input Text Area

Contoh input text area, biasanya digunakan untuk membuat input alamat, dll :

<html>
<head>
<title> Belajar Input Text Area </title>
</head>
<body>
<form>
<textarea name=" Alamat " rows="20" cols="30">
</textarea>
</form>
</body>
</html>

Belajar HTML Checkbox

Untuk membuat checkbox di HTML berikut saya kasih contohnya,

<html>
<head>
<title> Input dengan Ceckbox </title>
</head>
<body bgcolor="red">
<p> Pilih yang Anda Suka </p>
<p> Daftar menu </p>
<p>
<input type="checkbox" name="c1" checked="checked"/> Ayam Goreng </br>
<input type="checkbox" name="c2"> Gado-gado </br>
<input type="checkbox" name="c3"> Sate Kambing </br>
<input type="checkbox" name="c4"> Magelangan </br>
</p>
</body>
</html>

berikut tampilannya,