Belajar HTML itu belajar tag.
Jadi cara belajar HTML adalah mengoutputkan semua tag yang kamu tahu ke dalam body html setelah dibuat template-nya dan beberapa info penting.
Reference yang gw ambil:
1. Tutorialpoint
2. W3School
Template html adalah:
<html>
<head>
</head>
<body>
</body>
</html>
Contoh:
<html>
<head>
</head>
Info penting:
1. Komen
Komen itu kayak tanda panah <!---Komen -->
Komen itu gak ditampilkan.
2.
<body>
<h1> Hello World! </h1>
<p> This is a paragraph </p>
<!----- Fuck DJ ---->
<a href="http://www.google.com">This is a link </a><br />
<img src="D:/pic1.png">This is an image</img>
'this is an unordered list (un numbered list)
<ul>
<li> This is an unordered list </li>
<li> This is an unordered list </li>
</ul>
<ol>
<li>This is an ordered list </li>
<li>This is an ordered list </li>
</ol>
<table border="1px">
<tr>
<td>Col 1</td>
<td>Col 2</td>
</tr>
<tr>
<td> Col 1 </td>
<td> Col 2 </td>
</tr>
</table>
<br />
This is an iframe to another web <br />
<iframe target="http://www.facebook.com?">This is an iframe </iframe>
<br />
This is a button
<button>M</button>
This is list
<list>M</list>
</body>
</html>
Jadi cara belajar HTML adalah mengoutputkan semua tag yang kamu tahu ke dalam body html setelah dibuat template-nya dan beberapa info penting.
Reference yang gw ambil:
1. Tutorialpoint
2. W3School
Template html adalah:
<html>
<head>
</head>
<body>
</body>
</html>
Contoh:
<html>
<head>
</head>
Info penting:
1. Komen
Komen itu kayak tanda panah <!---Komen -->
Komen itu gak ditampilkan.
2.
<body>
<h1> Hello World! </h1>
<p> This is a paragraph </p>
<!----- Fuck DJ ---->
<a href="http://www.google.com">This is a link </a><br />
<img src="D:/pic1.png">This is an image</img>
'this is an unordered list (un numbered list)
<ul>
<li> This is an unordered list </li>
<li> This is an unordered list </li>
</ul>
<ol>
<li>This is an ordered list </li>
<li>This is an ordered list </li>
</ol>
<table border="1px">
<tr>
<td>Col 1</td>
<td>Col 2</td>
</tr>
<tr>
<td> Col 1 </td>
<td> Col 2 </td>
</tr>
</table>
<br />
This is an iframe to another web <br />
<iframe target="http://www.facebook.com?">This is an iframe </iframe>
<br />
This is a button
<button>M</button>
This is list
<list>M</list>
</body>
</html>
No comments:
Post a Comment