| Basic HTML Script!!! |
|
|
|
| Written by Rheys |
| Friday, 05 August 2011 07:54 |
|
HTML is the basic and the simplest way to make your posting more alive! You just need add some simple basic code that can make the line shines! This section will give you some very basic HTML script that can be easily used! HTML stands for Hyper Text Markup Language. From its name you can imagine that it is the way to markup your typings! HTML is written in this specific form that consisted of tags enclosed in angle brackets, e.g <xxxx>. HTML codes come in pairs, opening tag and closing tag. The closing tag must use "/". For example, the HTML code for heading 1, <h1>HEADING</h1> Here are some basic HTML code that you can use it easily for your simple posting. 1. Heading For heading itself divided in several types of heading, such as Heading 1, Heading 2, Heading 3, etc... HTML code for heading 1: <h1>Heading 1</h1> HTML code for heading 2 : <h2>Heading 2</h2> HTML code for heading 3 : <h3>Heading 3</h3> ..... etc....
2. Paragraph To begin new paragraph, use the following tag: <p></p>, for example: <p>This is the new paragraph content. Once upon a time when blablablabla. Blablablablablablablablablablablablablablabla. Quite long enaough for the example. Now let's jump to the next paragraph.</p> <p>Hey! We're on the new paragraph here! Yeay, I made it!</p>
3. Links Want to link your writing to another post? Yes you can do it easily by using this tag: <a href="http://www.thepointlink.com">The line I want to be linked</a> There are several ways to make linked sentence, such as: 1. To open it in a new tab or browser window, use: target="_blank" Example: Please visit my other site on www.sayangkucing.com 2. To open it in current window, no need to add any target or can also use: "target="_self" Example: Please visit my other site on www.sayangkucing.com
4. Images You can add image from other page or location by using this tag: <img src="http://imageLocationAndName.gif" border="0" /> For example, I want to put smiley from "http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/1.gif", then I use this tag: <img src="http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/1.gif" border="0" /> then this image will appear:
That's all for the basic HTML. The next tags of HTML will be posted soon! Happy HTML-ing! |


