Sunday 25 January 2015

HTML Tags - The Simplest In Web Development

HTML Tags - The Simplest In Web Development

A Great Website is the Reflection of the Creator or Designer

• Designing dynamic web pages in future, you need to have the knowledge of HTML codes. It is very easy to debug and
also the maintaining of it is simple. • Creating forms in your pages to send information to server and return result pages back to browser, you need to
have the knowledge of HTML codes to be able to create such forms. • There are other reasons that propel us to have the Knowledge of HTML codes or programming language to stand out in
our applications. Note: HTML Programming is used in Text Editors like Note Pad etc.
Q: Why do I find the Text Editor in my computer? A: It is located in your Local Disk [Hard Disk] now; Click on the Start Button, run through the Pop Up menu • Point on All Program, go to ACCESSORIES • Click on Accessories, run through the Pop Up menu and • Click on NotePad Application HTML like we said earlier is a programming language used in text
editors to bug. What and what make up the building or creating a page with this program?
(<   HTML   > Hello Web Page <   /HTML   >) We have three parts that make up the page in this Programing Language; they are: 1. HEAD - This comprise the Head tag and Title tag (<   head   ><   /head   > & <   title   >) Every HTML page must have a header; it contains important information about the page. Different tags are used for
different sections of a header. 2. BODY - This is where the Main content of your page is designed or created. After the HEAD comes the BODY.
Web page body will come right after head end tag (<   /HEAD   >); so our web page will be
something like: (<   HTML   > <   HEAD   > <   TITLE   >Two Things Make Html Head<   /TITLE   > <   /HEAD   > <   BODY   > Welcome to our Home Page. More text, content, writes up needed here: <   /BODY   > <   /HTML   >) Extended body tags which has optional parameters are used in this section of HTML. You can also change the background
of your page by using body tag extension. When you look at the above page, there's no additional tag added to the body.
3. FOOTER - This comes immediately after the BODY, there we see; Privacy, Terms & Conditions or Declaimer etc.
Note: HTML codes are called TAGS and each tag has Starting/Opening
tag and Ending/Closing tag. Like the first page we just saved have two tags which the starting or opening tag is (<   HTML   > and the ending or closing is <   /HTML   >). You also have to know that the presence of slash sign <   /   > makes a tag closed; so if one fails to type slash
after the opening tag, it will still remain open and will affect your contents. Tags are commands in HTML Program that tell the browser which is starting and ending of content or page. We start our HTML page with (<   HTML   >) because that is the programming language we are building and when that particular page is exactly what we want it to be then we close our page with (<   /HTML   >)
which automatically ends the page. Nothing added to that page after the ending tag (<   /HTML   >) will display only the contents before it. Note: There must not be space between Greater and Less than <   > signs, but the words in it can be
spaced depending on the tag. More Tips Here! HTML Tags are very easy to use in any way you will like to use it to design your pages. It the simplest in Programming Language because it require no extra language or code than your daily languages.
Click For The Complete Write Up!

No comments:

Post a Comment