Kamis, 25 September 2014

Contoh kode-kode HTML

Cara membuat halaman HTML dasar:
<html>
<head>
<title>
Latihan Membuat Halaman HTML
</title>
</head>
<body>
Welcome
</body>
</html>

Cara membuat teks box, password, dan tombol
<html>
<head>
<title>
Latihan Membuat Halaman HTML
</title>
</head>
<body>
<h1> Latihan </h1>
<form>
username<input type="teks" name, "teks box">
password<input type="password" name, "teks password"
<input type="button" name="btn ok" value="ok"> </input>
<input type="submit" name="btn simpan" value="simpan"> </input>
<input type="reset" name="btn reset" value="reset"> </input>
</form>
</body>
</html>

Tidak ada komentar:

Posting Komentar