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

Friday, June 12, 2009

Blogger Trick: Learn about HTML part 2

This post is a continuation of the post titled Learn about HTML. This tutorial is still in the beginners go to the blogger. Why do I not tell you the tutorial for the expert? Because I am a beginner blogger too that must still learning. So I will take the beginner blogger to learn together. Please continue reading Learn about HTML part 2.


This element is for choose font size that show in your browse. The Heading Tags is <h1>...</h1> ~ <h6>...</h6>.


Example :


<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>



The result to be like this :

This is heading 1



This is heading 2

This is heading 3

This is heading 4

This is heading 5


This is heading 6




Or you can using tag <font size="SIZE NUMBER">YOUR WORD</font>.

Contoh :

<font size="1">Font size 1</font>

<font size="2">Font size 2</font>

<font size="3">Font size 3</font>

<font size="4">Font size 4</font>

<font size="5">Font size 5</font>

<font size="6">Font size 6</font>

<font size="7">Font size 7</font>



These are the result :

Font size 1

Font size 2

Font size 3

Font size 4

Font size 5

Font size 6

Font size 7


See you in the next post. Hope this post useful for you. Good Luck!


Read more...

Monday, June 8, 2009

Blogger Trick: Learn about HTML

Blogger Trick: Learn about HTMLI am happy to customizing or editing my blog template, to find out what the template I want. But the main requirement for editing a template or costumizing required knowledge of HTML tags. The first time I learn about HTML, I can not understand it. Because I think, HTML is very complex. In fact when executed, the results can make it bearable we understand about the elements of the template and blogger widgets. But I not a expert in the field of HTML. I only understand a little about HTML, and must still learn the same as you. Little knowledge I share this to you who want to learn about HTML.


What is HTML?
  • HTML (Hyper Text Markup Languange) is a language for describing web pages

  • HTML is not a programming language, it is a markup language

  • A markup language is a set of markup tags

  • HTML uses markup tags to describe web pages


HTML Tags:
  • HTML markup tags are usually called HTML tags

  • HTML tags are keywords surrounded by angle brackets like <html>

  • HTML tags normally come in pairs like <b> and </b> or <i> and </i>
  • .
  • The first tag in a pair is the start tag or opening tag, the second tag is the end tag or closing tag


Bold: <b>........</b>
ex: <b> Example </b>
result: Example

italic: <i>........</i>
ex: <i> Example </i>
result: Example

We can replace the codes, Bold+italic: <b><i>........</i></b>
ex: <b><i>Example</i></b>
result: Example

Tag Case is not sensitive:
<b>........</b> = <B>........</B>
<i>........</i> = <I>........</I>

If like Bold or italic have </b> or </i>, any tag that have no pairs like <hr>, <br> or <input>.


Blogger template is in three parts HTML Tags. Namely html, head, and body.
<html>
<head>
</head>
<body>
</body>
</html>


The text between <html> and </html> describes the web page (about HTML Doc)
The text between <body> and </body> is the visible page content (ex:image,link,text,etc..)
The text between <head> and </head> is to put like meta data (ex:keyword,etc..)

Hopefully this is useful knowledge for you. Good Luck!


Read more...