Introduction :
Most of the bigness in wapsite development don't know about the basic Html codes to design a wapsite . Without knowing the basic step no one can create wapsite with any wapsite builder . Most of the wapsite builders are getting Graphical Tools for creating wapsite but without having a minimum knowledge about Html you can't understand what the Graphical Tools are actually using for . Through this article you are going to learn some of the basic Html codes which help you to create a wapsite .
Html Page Introduction :
How to create a Html Page : You can simply create Html page by using your notepad or any other text editing software . The html page name must be like the following "htmlpagename.html" .
Html Page Programming Steps :
It is very easy to program a Html page than the Php , Java , Ajax , J-query , Etc . Because Html is the most simplest programming language and it is the basic infrastructure of every website and wapsite .
The Simplest Form of Html Programming :
<html> <head><title>My First Html Page</title></head> <body> <h1>My First Page</h1> </body> </html>
- The "<html>" Tag is used on the Html program for starting the Html program .
- The "<head>" Tag is used on the Html program for starting the Heading Section of Html program .
- The "<title>" Tag must be inside the "<head>" Tag because the "<title>" Tag is used for denoting the Title of the Html page .
- The "<body>" Tag is used to start the Body of the Html programming . It is the preview part of the Html page where you can add Image,Text , Etc which you need to show on the Html page .
- The "<h1>" Tag is used for converting the text inside the "<h1>" and "</h1>" as Heading .
Some of The Other Use-full Html Tags :
Place the Html Tags in between the <body> and </body> Tags to know the effects . Create a Html page yourself in your Pc and copy paste the "Simples Form of Html Programming" to it and add the following Html Tag to it .
Html Tag which using for linking a page between another page in your server or any another website which located in another server .
<a href="http://www.websiteaddress.com">Link Anchor Text</a>Html Tag which using for display image in a html page with different High and Size .
<img src="http://image url address here" width="100" height="100>Html Tag which using for make link affect on a Image .
<a href="http://linkaddresshere.com"><img src"http://image url address here"></a>Html Tag which using for convert Text to Italic Style .
<i>Howi.IN Style Italic</i>Html Tag which using for convert Text to Underlined Style .
<u>Howi.IN Style Underline</u>Html Tag which using for convert Text to Bold Style .
<b>Howi.IN Styel Bold</b>Html Tag which using for display animated Text Style .
<marquee>Howi.IN Moving</marquee>
Html Demo Programming With All The Above Tags :
<html> <head><title>My First Html Page</title></head> <body> <h1>My First Page</h1> <br> <a href="http://www.websiteaddress.com">Link Anchor Text</a> <br> <img src="http://image url address here" width="100" height="100> <br&g <a href="http://linkaddresshere.com"><img src"http://image url address here"></a> <br> <marquee>Howi.IN Moving</marquee> <br> </body> </html>This are the basic Html tag which using for design a wapsite . By learning all this basic Html Tag you can create a simple wapsite using any wapsite builder .
Suggested Article For Wapmasters :
- Create Your Own Live Cricket Score Wapsite Using Php .
- Top 10 Free Php Hosting Site to Create Free Wapsite .
- Create a Amazing Wapsite Using Djamol Auto-index Script .
- Create Your Own Video Streaming Wapsite Like Youtube .
I hope you well enjoyed this article , If you have any doupts related to this article , Please let us know by using the comment box given below . Thanks