Become Our Fan on Social Sites!

Facebook Twitter

Google+ RSS YouTube
Showing posts with label HTML. Show all posts
Showing posts with label HTML. Show all posts

Saturday, 10 May 2014

Populate Select Box / Drop Down Dynamically From Database

How to fill select box dynamically from database table. Here is a tutorial of how to fill up HTML drop down menu dynamically from MySQL database table. Fill Select Box / Drop Down Dynamically...

Saturday, 12 April 2014

HTML List Example

In HTML, there are two most commonly used list tags <ol> - ordered list and <ul> - unordered list. <ol> - ordered list displays list with decimal numbers or roman numbers or alphabets. <ul> - unordered list displays list with bullet or circle or square symbol. HTML List Examples ...

HTML Ordered List Example

Ordered list contains order of decimal numbers, roman numbers or alphabet characters. To create ordered list <ol> tag used. Inside <ol> tag <li> - list item tag is used to create list item. HTML - OL - Ordered List Example ...

Unordered List Example

Unordered list creates list with symbols like disc/bullet, circle or square. To create unordered list <ul> tag is used. Create list item using <li> tag. In <ul> tag type attribute is used to create symbol like disc , circle or square with list item. If you not specify type attribute then by default is disc/bullet symbol. HTML...

Description List Example

With description list, we have to use three HTML tags named : <dl> - description list , <dt> - name of description list and <dd> - description of name. HTML DL-Description List Example ...

Friday, 11 April 2014

HTML Heading Tags

In HTML, <h1> to <h6> tags are used for HTML heading. <h1> tag displays text bigger compare to <h2> and <h2> tag displays text bigger compare to <h3> and so on. HTML Heading Tags...

Sunday, 16 March 2014

HTML Image Tag Example

Hello friends, this tutorial is about HTML <img> (image) tag. To display/show image in the webpage then we have to use <img> tag of HTML. Here you can find all required attributes of <img> tag and some tips for image optimization. HTML Image Tag Example Syntax: <img src="" alt="" /> "src" and "alt"...

Saturday, 8 March 2014

How To Create Form In HTML

Hello friends here is a descriptive tutorial about form creation in HTML. To create form in HTML <form> tag is used. Forms are useful in creation of student registration, employee registration, login, etc. Create HTML Form ...

Friday, 7 March 2014

How To Create Drop Down Menu In HTML

Here is a tutorial of how to create drop down menu in HTML (HyperText Markup Language). To create drop down menu you have to use two HTML tags that are <select> tag and <option> tag. HTML Drop Down Menu <select> tag is parent tag of <option> tag. Options can be specified using <option> tag. This drop down...

Thursday, 6 March 2014

How To Create Textarea In HTML Form

This post discusses about how to create textarea in HTML form. <textarea> tag can be written inside the <form> tag and it is used for to get large text like address, resume, etc. HTML textarea Example Read How To Create Button In HTML Read How To Create Radio Button In HTML Read How To Create Checkbox In...

Wednesday, 5 March 2014

How To Create Button In HTML

This post is about how to create button in HTML. There are many different methods of creating button. Some examples are given below but we talk only about <input type="button" />, <input type="submit" /> and <input type="reset" /> HTML Button Example Read How To Create Radio Button In HTML Read How To Create...

Tuesday, 4 March 2014

How To Create Radio Button In HTML

Hello friends, here is a descriptive tutorial of how to create radio button in HTML (HyperText Markup Language). This radio button creation tutorial contains all most common used attributs with example codes. HTML Radio Button Example Radio button tag can be written inside the <form> tag, so <form> tag is parent tag of radio...

Saturday, 1 March 2014

How To Create Text and Password Fields in HTML

This is descriptive note about how to create text field and password field in HTML form. This note contains description of all attributes of text field and password field. HTML Form's Text and Password Fields Example ...

Friday, 28 February 2014

HTML Checkbox Example

HTML checkbox is used for multiple item selection. Checkbox looks like square box.This tutorial gives information about attributes of checkbox element with example code. HTML Checkbox Example Syntax of checkbox: <form> <input type="checkbox" /> </form> There are following most common used attributes of...

Sunday, 16 February 2014

How To Create Table In HTML

1. What is Table In HTML? Table is a collection of rows and columns. It is very easy to create table in HTML. To create table <table> tag is used. If we consider student table then some fields/columns of student table are Roll No, Name, Contact No, City, etc. Table is used to display records of students, employee, products, etc in tabular...