Web Developement

HTML Form File Control

Posted by adam On October - 30 - 2011ADD COMMENTS

The input type=”file” automatically insert control with the browse button. When the user click on the browse button it will automatically open the dialog box with the computer storage location, select the drive, folder and finally double click on the file which you want to upload on the server or sent to an email address.

The HTML code line add the file control on the HTML form.

Read the rest of this entry »

Popularity: 7% [?]

HTML Form Password Control

Posted by adam On October - 30 - 2011ADD COMMENTS

The textbox show the user input in plain text, so there is high risk that other people around you can see the confidential information on screen. The password control can be used to keep safe the confidential data such as password, credit card number, PIN and etc from other people.

Below HTML code line add the password control in HTML form.

<input type=”PASSWORD” name=”userpass” maxlength=”10”>

Read the rest of this entry »

Popularity: 4% [?]

HTML Form Textbox Control

Posted by adam On October - 30 - 2011ADD COMMENTS

The textbox control is used to take information from the user. The textbox control can be placed in the form by setting the form type attribute value to text as mentioned below.

<input type=”TEXT” name=”username” value=”default”>

Read the rest of this entry »

Popularity: 4% [?]

HTML Forms

Posted by adam On October - 30 - 2011ADD COMMENTS

The forms in html are used in Web Site to take input from the user, the form contain multiple input elements which includes textbox, checkbox, text area, radio button, drop down, submit buttons and many more.

Read the rest of this entry »

Popularity: 4% [?]

HTML iframe Tag

Posted by adam On October - 24 - 2011ADD COMMENTS

The HTML iframe is the inline frame within the HTML document which contain another document. The iframe can be added within the text after any line as you may have seen in many Web Site terms and services Web page. The height and width attributes define the size of iframe.

Read the rest of this entry »

Popularity: 4% [?]

Frame marginheight and marginwidth attributes are used to add more space between the text and edges of the frame. The vertical space between the text and frame edges can be increase using the marginheight and horizontal space can be added using the frame marginwidth attribute. The marginwidth and marginwidth attribute take value numeric value which is measured in pixels.

Read the rest of this entry »

Popularity: 4% [?]

HTML Frameset FrameBorder Attribute

Posted by adam On October - 24 - 2011ADD COMMENTS

The frameborder attribute is used to ON and OFF the frame borders. The frameborder=”0”  turn off the frame borders ad frameborder=”1” turn on the same. All the major browsers can recognize the frameborder attribute.

HTML code to turn off the frame borders by setting the frameborder value to zero.

Read the rest of this entry »

Popularity: 4% [?]

Frame Scrolling Attribute in HTML

Posted by adam On October - 24 - 2011ADD COMMENTS

By default, the scrolling is set to auto which shows enable or show the scroll bars only if the contents of the page is larger than the size of the Web Page. The frame scrolling can be set to values “YES”, “NO” and “AUTO”.

<Frame src=”home.htm” scrolling=”YES”> means always enable and show the scroll bars even if the size of the contents are less than the Web Page which logically not requires scrolling.

<Frame src=”home.htm scrolling=”NO”> means always disable and not show the scroll bars even if the size of the contents are large than the Web Page which logically requried the scrolling to read the cotents.

<Frame scr=”home.htm scrolling”AUTO”> automatically detects whether scrolling is required for the Web Page or not.

 

Read the rest of this entry »

Popularity: 4% [?]

How to Create Navigation Using HTML Frameset

Posted by adam On October - 24 - 2011ADD COMMENTS

Normally we use table to create navigation menu for Web Site but the problem with using tables is that we have to place the table with navigation on every Web page. The other way to create navigation links using frameset. The logic is very simple create all the Web pages of Web Site after that crate a navigation page which link all the Web pages. My Web site consist of two Web Page names as frame1.htm and frame2.htm respectively. Now, the next thing I have to do to link these page with the navigation menu for doing that I have made the Web Page with the name framelinks.htm which linking to frame1.htm and frame2.htm Web Pages. The final step is to create a Web Page with the frameset and assign pages for that I have made menulinkframe.htm.

Popularity: 4% [?]

HTML <Frame> noresize Attribute

Posted by adam On October - 22 - 2011ADD COMMENTS

By default, the user can resize the frames by dragging the walls of the frame. The frame noresize attribute lock the walls of frame, so the user can’t change the size of frames.

Let’s look at the HTML code which is showing the use of frame noresize attribute.

Read the rest of this entry »

Popularity: 4% [?]