Thursday, October 31, 2013

How to use a combobox in html form

Hey guys..so far we have learned how to add textboxes checkboxes,radiobuttons and buttons in a html form.. Today we will learn about combobox,what combobox is and why do we use it for. A combobox is a list which displays certain items,from that list you can select only one,a combo box opens a dropdown in which the list is...


Wednesday, October 30, 2013

How to add radio buttons in html form

Hey everyone,our topic for today is Radio Buttons. We will learn how to add radiobuttons in a form,the process is the same as we used in adding checkboxes and textboxes so you will fine it very easy. The purpose of using radio buttons is that if we want to give user an option to select one out of...


Tuesday, October 22, 2013

How to use checkboxes in html

Hey everyone how are you guys, so far we have learned about forms and how to create a form will textboxes and a button. Today we will learn to add checkboxes in a form. The reason for using a checkbox option in a form is if we want to select multiple items for example if we want to...


Monday, October 21, 2013

How to create an html form

Hey every one how are you.. Today we will learn about forms.A form in html has the same meaning as any form which you fill out on paper.You can create your forms for your website such as a registration form etc. To start with the basic you should know that the <form> tag is used to create an...


Saturday, October 19, 2013

How to create ordered list,unordered list and description list

Hey everyone.. The topic for today is HTML List.A list in HTML has the same meaning as any list of items etc. The 2 most common types of lists in HTML 1. Ordered 2. Unordered To start an ordered list we use the tag <ol> and then <li> tag to write the name of each item of the...


How to create tables in an HTML document.

Hey everyone how are you Today we will learn how to make tables in HTML. A table is made so that you can display your data in a format in rows and columns.Tables are defined by the <table> tag and inside this tag you can start making rows of the table. So lets get started,a table is divided...


how to align text by using CSS.

Hey everyone today we will learn how to align our text by using CSS. Let me explain what align means in HTML.If you want your heading to appear in the center of the page then you can write align="center" and your text will appear in the center,in the same way you can align your text on left and...