Cera Production

Lomba Review Percetakan CeraProduction.com

Tridinamika

Tridinamika Blog Kontes 2013
Showing posts with label HTML Basic. Show all posts
Showing posts with label HTML Basic. Show all posts

Wednesday, 17 July 2013

Quote and Blockquote Tags

1. Blockquote Tag (<blockquote>...</blockquote>) 
     Blockquote tag is used to give the sign to the readers that the text between this tag are a qoute from other paragraph or others site. There is no a sign that shown by browser, but will added an indentation into all the text. 
     This tag is block. And then, this tag just have an attribute that is cite, that used to show the site address of text have been quote but it willn't shown by browser. 
example: 

Sunday, 14 July 2013

Heading and Horizontal Rule Tags

1. Heading Tag (<h1>...</h1>)

     Generally, this tag is used when we want to make a page, chapter, or section titles. And this tag will make the font to be big and bold dependent on the used tag because this tag have some kind of Heading tag like <h1>, <h2>, until <h6> and then if heading tag is higher then font size will smaller. 
     These tag is block. 
example: 

Tuesday, 2 July 2013

Preformatting, Span and Division Tags

1. Division Tag (<div>...</div>)

    This tag has function that same with paragraph tag, that is containing text. There is no atribute for this tag. Only special particular attribute. And then, this tag will look very useful when set by using CSS code.

    And also, this tag is block (by default). However there is no margin that will added (before and after this tag). Moreever, this tag can be inline with adding CSS code. 
For example:

Friday, 28 June 2013

Comment, Break, and Paragraph Tags

1. Comment Tag ( <!--...--> )
     This tag is used for making a comment on HTML coding and will not displayed in browser. And usually the comment is inserted into explanation of HTML codes. For example:
<html>
<head></head>
<body>
  <!-- This section is show of body tag content --></body>
</html>

Thursday, 27 June 2013

HTML Introduction

HTML content consists of tags. Tag is HTML code. Generally, tag come in pairs that is beginning and ending tag.  For example, <html>, <head> and <body> are beginning tags and </html>, </head>, </body> are ending tags. 
There are three main parts of HTML contents, including: <html>, <head> and <body> tag. Below is stucture of its:
Three Main Parts of HTML Contents
Three Main Parts of HTML Contents