Created
October 7, 2019 04:05
-
-
Save cahyowhy/49060445c9f7e63f0a26b1dfc5ed007d 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> | |
<html> | |
<head> | |
<title> | |
Bootcamp hari pertama | |
</title> | |
</head> | |
<body> | |
<!-- contoh heading --> | |
<h1 style="color: red; text-align: center">Contoh heading</h1> | |
<h2 style="color: blue; text-align: left;">Contoh heading 2</h2> | |
<h3 style="color: magenta; text-align: right">Contoh heading 3</h3> | |
<h4 style="text-decoration: underline">Contoh heading 4</h4> | |
<h5 style="color: mediumorchid; background-color: moccasin">Contoh heading 5</h5> | |
<h6>Contoh heading 6</h6> | |
<!-- contoh paragraf --> | |
<p style="margin-top: 15px;text-align: justify;margin-bottom: 20px;margin-left: 15px;margin-right: 15px;"> | |
Ipsum mollit dolor veniam fugiat aliquip cupidatat consequat aliquip culpa eiusmod incididunt anim. Commodo enim | |
et dolore id ut Lorem esse duis deserunt fugiat consectetur eu. In duis officia cupidatat magna minim dolor sunt | |
tempor aute eiusmod. Tempor ullamco fugiat do id nulla eiusmod adipisicing. Proident fugiat voluptate officia | |
magna esse id in ullamco.</p> | |
<span>Tag span</span> | |
<!-- ctrl+/ untuk membuat komentar -> | |
<!-- tag br untuk membuat garis baru --> | |
<br> | |
<br> | |
<i>Kalimat miring</i> | |
<br> | |
<b>Kalimat bold (cetak tebal)</b> | |
<!-- list ul (unordered list) --> | |
<ul> | |
<!-- untuk menyalin satu line (gunakan perintah shift + alt + down) --> | |
<li>list 1</li> | |
<li>list 2</li> | |
<li>list 3</li> | |
</ul> | |
<!-- list ol (ordered list) list dengan urutan --> | |
<ol> | |
<li>list 1</li> | |
<li>list 2</li> | |
<li>list 3</li> | |
</ol> | |
<a href="https://google.com">Ini tag untuk link</a> | |
<div style="text-align: right;"> | |
<img src="download.jpg" alt="Gambar hasil download" style="width: 100px;display: block;text-align: right;"> | |
</div> | |
<table border="1"> | |
<thead> | |
<tr> | |
<th>No</th> | |
<th>Nama</th> | |
<th>Alamat</th> | |
</tr> | |
</thead> | |
<tbody> | |
<!-- untuk menyalin > 1 baris. block dulu baris nya lalu tekan | |
shift + alt + down(arrow) --> | |
<tr> | |
<td>1</td> | |
<td>Amir</td> | |
<td>Sleman</td> | |
</tr> | |
<tr> | |
<td>2</td> | |
<td>Linda</td> | |
<td>Jakarta</td> | |
</tr> | |
<tr> | |
<td>2</td> | |
<td>Linda</td> | |
<td>Jakarta</td> | |
</tr> | |
</tbody> | |
<!-- ctrl + z undo operation --> | |
</table> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment