How To Create A Twitter Account Step By Step

The largest micro blogging sites and the most popular social site in the net is www.twitter.com. It's the most and easy social site to have all in the technology world. With this social site you can do almost everything like other social sites. Here you can share, view, like and exchange what you want to interact with millions of users. The business world can get the most easy and cheap way of marketing by this site. To create a twitter account you need to have certain things such as  Real Name, Mail, Password and completeness of profile. Now i am going to show you how to make a twitter account with easy steps. 

So let's do it to make a twitter account...........


Click the 'sign up' button while you complete the name, mail and password.



Now you have to click the 'sign up' button after providing user name.



Provide your phone number and click the 'verify phone number' button.



Set the code sent in your phone and click 'verify the code' button.




Provide your password and click 'sign up' button to ahead.




Now you have to click 'Let's go' button for the next steps.




Click 'continue' button to forwarding.




Follow some people you know and click the 'continue' bitton.





Upload your picture from your computer to set your profile picture and click the 'continue' button.





Upload your G-Mail contacts to go next steps.



Follow the people and continue for the next step.






Confirm your mail by clicking on the 'confirm now' button sent by twitter in your mail box.


Now you are ready to use and enjoy your twitter account with lots of friends and familiars. Have the good moment with www.twitter.com.


 

Make A HTML Image Tag

With the HTML codings you can do a lot for the web pages. It's simple and easy to set the codings so you can practice yourself. You must memorize the basic tags before codings. The HTML tags begins with <html> and ends with </html>. When you pit any tag, the tag must be into it. 
In the HTML tag the images are shown in the tag <img>. It's so easy to realize the codings with images.

To make this easy just follow the codings...

<html>
<body>

<img scr="nature.jpg" width="250" height="170" />

</body>
</html>


Note: The given picture must have in your computer.


 

How To Make Link Using HTML Coding

You need to set up coding if you want to link your page with another page. In the HTML programming, it is so simple and easy to make a link with another. The linked page or website is in the <a herf=...>. You must do under this rules to do so. To make a link from one website to another using HTML is so easy and simple. Just coding some steps and you will do it easily.

Follow the codings bellow... 

<html>
<body>

<a href =''http://www.freetutorials24.blogspot.com''>This is a link</a>

</body>
</html>


You will able to do so if you practice more and more.



 

HTML Paragraph Tags

To narrate the contains we need paragraph tag and this type of tag is easy to set up in the HTML codings. HTML paragraph tags are so important to make the coding perfect and easy. This tag starts with <p> and ends with </p>. The texts are put between these two tags.

Follow the codings to make it easy...........

<html>
<body>

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

</body>
</html>


By practicing more you can also be master with this.


 

Introduction To HTML Heading Tags

Among the HTML codings, HTML Heading is the first and most important to make the contains many seizes. With this tag you can make your writings tiny, small, big, large etc. It's so easy and simple to set up this code in the HTML file. In the HTML file the headings are shown with <h1>----- </h1>,  <h2>-----</h2>,  <h3>-----</h3>,   <h4>-----</h4>,  <h5>-----</h5> and  <h6>-----</h6>.


Follow the coding to make the headings...

<html>
<body>

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

</body>
</html>

 You can practise yourself to be expert in it.