HTML frames and HTML forms

NadineCruz4 14,865 views 24 slides Aug 03, 2016
Slide 1
Slide 1 of 24
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5
Slide 6
6
Slide 7
7
Slide 8
8
Slide 9
9
Slide 10
10
Slide 11
11
Slide 12
12
Slide 13
13
Slide 14
14
Slide 15
15
Slide 16
16
Slide 17
17
Slide 18
18
Slide 19
19
Slide 20
20
Slide 21
21
Slide 22
22
Slide 23
23
Slide 24
24

About This Presentation

HTML frames and HTML forms


Slide Content

HTML Frames and HTML Forms

HTML Frames Frames – enables the browser to display more than one HTML document on the same window.

HTML Frames

HTML Frames Sample syntax of HTML Frames <frameset cols=40%, 60%> <frame src = “grade6.html”> <frame src = “grade6-2013.html”> </frameset>

HTML Frames

HTML Frames <frameset> Are frames to be displayed on the browser window. It contains columns (cols) with number of percent that represents the area of the column that will appear on the screen of the webpage.

HTML Frames <frame> Is the element that defines the HTML document that will be displayed on a specific region of the browser window. *SRC is the filename of a separate html document that you want to display on the screen.

HTML Frames Sample syntax of HTML Frames <frameset cols=40%, 60%> <frame src = “grade6.html”> <frame src = “grade6-2013.html”> </frameset>

HTML Frames You can also create multiple frames to be displayed.

HTML Frames

HTML Forms Forms – is used to allow user to enter information like text fields, text area fields, drop-down menus, radio buttons, checkboxes, etc.

HTML Forms

HTML Forms Input <input> - Is used to define an input field where the user may enter information on the form .

HTML Forms Two attributes Type – determines what kind of input field Name – assigns a name to the given field so that you have a reference for later use

HTML Forms Sample syntax <form> First name: <input type =“input” name=“ sarah ”> </form> Last name: <input type =“text” name=“ leah ”> </form>

HTML Forms

HTML Forms To specify one type of input tag from another we set the type attribute to one of the following values. <text> <password>

HTML Forms text - produces single line text entry password - allows password and other secret data to be entered

HTML Forms Sample syntax <form> First name: <input type =“input” name=“ sarah ”> </form> Last name: <input type =“text” name=“ leah ”> </form> Password: <input type =“password” > </form>

HTML Forms 3. Radio – is used to display a list of options. However it only allows one option to be selected.

HTML Forms 4. Checkbox – allows the user to select one or more options from a set of choices. One can select by clicking on one of the options.

Hypertext Markup Language
Tags