Last active
December 28, 2019 07:32
-
-
Save galihlprakoso/5c1dd26717649554c76bc89d45360ae0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> <!-- Deklarasi yang menunjukkan bahwa ini adalah dokumen HTML 5 --> | |
<html> <!-- Root dari sebuah halaman HTML --> | |
<head> <!-- Elemen yang mengandung semua informasi meta dari sebuah Halaman Web --> | |
<title>Here is the title</title> <!-- Judul dari sebuah dokumen web --> | |
</head> | |
<body> <!-- Elemen yang mengandung isi yang akan tampil di browser --> | |
<h1>This is a sample heading.</h1> <!-- Elemen judul dengan ukuran terbesar --> | |
<p>This is a sample <b>paragraph</b>.</p> <!-- Elemen paragraf --> | |
<img width="100" height="100" src="https://1.bp.blogspot.com/-IfTWvhzrZ_c/XgbaUJSHWsI/AAAAAAAAPGQ/4gZn4GHdD-Ua9x_BBnh7ZOvggIOGbcZHQCLcBGAsYHQ/s1600/tutorial-menggunakan-scratch.jpg" /> | |
<!-- Contoh bagaimana cara menampilkan gambar pada dokumen HTML --> | |
<br> <!-- Elemen yang berfungsi untuk membuat baris baru --> | |
<a href="/">This is a sample of a link</a> | |
<form action="" method="POST"> | |
<input type="text" name="example" /> | |
<button type="submit">SUBMIT</button> | |
</form> | |
<!-- Contoh bagaimana membuat formulir pada sebuah halaman web --> | |
<!-- action, type, name pada beberapa tag di atas adalah sebuah atribut. --> | |
<!-- atribut mendefinisikan informasi tambahan mengenai sebuah tag HTML --> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment