Belajar Html Dasar Bersama Rozi_192350176
Torutial HTML Dasar
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
Heading
<h1>to .<h6> contoh:
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
dengan code sebagai berikut :
</h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
Mengatur Heading menggunakan properti font-size :
Heading 1
Paragraf
<p>This is another paragraph.</p>
This is a paragraph.
This is another paragraph.
Style HTML
I am normal
I am red
I am blue
I am big
a. Background Color
<p style="background-color:tomato;">This is a paragraph.</p>
This is a heading
This is a paragraph.
b. Text Color
<p style="color:red;">This is a paragraph.</p>
This is a heading
This is a paragraph.
c. Font
<p style="font-family:courier;">This is a paragraph.</p>
This is a heading
This is a paragraph.
d. font-size
<p style="font-size:160%;">This is a paragraph.</p>
This is a heading
This is a paragraph.
Text Formattting
This text is bold
This text is italic
This is subscript and superscript
Elemen Formatting HTML
<b>- Teks tebal<strong>- Teks penting<i>- Teks miring<em>- Teks yang ditekankan<mark>- Teks yang ditandai<small>- Teks yang lebih kecil<del>- Teks yang dihapus<ins>- Teks yang disisipkan<sub>- Teks subskrip<sup>- Teks superskrip
Do not forget to buy milk today.
e. Tag del dan ins
<p>My favorite color is <del>blue</del> red.</p>
<p>My favorite color is <del>blue</del> <ins>red</ins>.</p>
hasilnya:
My favorite color is blue red.
My favorite color is blue red.
f. Tag sub dan sup
<p>This is <sub>subscripted</sub> text.</p>
<p>This is <sup>superscripted</sup> text.</p>
hasilnya :
This is subscripted text.
This is superscripted text.
Komentar
<p>This is a paragraph.</p>
<!-- Remember to add more information here -->
HTML Colors
pemberian warna pada Html sama seperti format style tadi , pemberian warna bisa memakai format nama warna ,RGB,Hex dan HSL
rgb(255, 99, 71)
#ff6347
hsl(9, 100%, 64%)
a. Border Color
codenya :
<h1 style="border:2px solid Tomato;">Hello World</h1>
<h1 style="border:2px solid DodgerBlue;">Hello World</h1>
<h1 style="border:2px solid Violet;">Hello World</h1>
hasil :
Komentar
Posting Komentar