Tutorial belajar dasar html melalui w3school

Posted by Labels: at

HTML Basic

semua dokumen HTML harus memulai dengan deklarasi tipe: <!DOCTYPE html>.
Dokumen HTML <html> dan berakhir dengan </html>.
terlihat bagian dari dokument HTML adalah antra <body> dan </body>.

 Contoh

<!DOCTYPE html>
<html>
<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>

</body>
</html>
HTML Heading
HTML headings are defined with the <h1> to <h6> tags:

Contoh

<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>

HTML Paragraphs HTML paragraphs are defined with the <p> tag:

Contoh

<p>This is a paragraph.</p>
<p>This is another paragraph.</p>

HTML Links
HTML links are defined with the <a> tag:

Contoh

<a href="http://www.w3schools.com">This is a link</a>

tujuan link ditentukan dalam href attribute.
atribut yang digunakan untuk memberikan informasi tambahan tentang elemen HTML

HTML Imagesgambar HTML didefinisikan dengan <img> tag.
sumber file (src), teks alternative (alt), dan ukuran (width and height) disediakan sebagai attributes:

Contoh

<img src="w3schools.jpg" alt="W3Schools.com" width="104" height="142">

sumber: w3school

1 comment:

Back to Top