Showing posts with label HTML. Show all posts
Showing posts with label HTML. Show all posts

Sunday, 1 June 2014

Membuat Kontak di HTML

<pre class="JScript" name="code">
&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;body&gt;

&lt;address&gt;
Written by Niki.Com&lt;br&gt;
&lt;a href=&quot;mailto:us@example.org&quot;&gt;Email us&lt;/a&gt;&lt;br&gt;
Address: Pandeglang, Banten&lt;br&gt;
Phone: 087772875554
&lt;/address&gt;

&lt;/body&gt;
&lt;/html&gt;


</pre>

Contoh membuat suatu kalimat dengan HTML

<!DOCTYPE html>
<html>
<body>

<code>NikiCom</code>
<br>
<kbd>Kumpulan e-book</kbd>
<br>
<samp>tutorial</samp>
<br>
<var>tips dan trik</var>
<br>

<p><b>Note:</b>hanya ada di sidkyshare.blogspot.com</p>

</body>
</html>

Cara Membuat Format Teks di HTML

<!DOCTYPE html>
<html>
<body>

<p><b>This text is bold</b></p>
<p><strong>This text is strong</strong></p>
<p><em>This text is emphasized</em></p>
<p><i>This text is italic</i></p>
<p><small>This text is small</small></p>
<p>This is<sub> subscript</sub> and <sup>superscript</sup></p>

</body>
</html>


Membuat Link Di HTML

<!DOCTYPE html>
<html>
<body>

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

</body>
</html>


Membuat Paragraph dengan HTML


<!DOCTYPE html>
<html>
<body>

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

</body>
</html>


HTML Heading


<!DOCTYPE html>
<html>
<body>

<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>

</body>
</html>


Belajar Dasah HTML

<!DOCTYPE html>
<html>
<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>

</body>
</html>

Powered by Blogger.

 

© 2013 NikiCom. All rights resevered. Designed by Templateism

Back To Top