Web Design and Development Lecture 3
Web Design and Development Lecture 3
development
Lecture 3
Course Instructor: Wardah Mahmood
Email Id: wardah.mahmood@riphah.edu.pk
HTML Attributes
• An attribute is used to define the characteristics of an HTML element and is
placed inside the element's opening tag. All attributes are made up of two
parts: a name and a value.
• The name is the property you want to set. For example, the paragraph
element in the example carries an attribute whose name is align, which
you can use to indicate the alignment of paragraph on the page.
• The value is what you want the value of the property to be set and always
put within quotations. The below example shows three possible values of
align attribute: left, center and right.
HTML Attributes
Core Attributes
• The four core attributes that can be used on the majority of HTML
elements (although not all) are:
• Id: Used to uniquely identify an element.
• Title: Gives a suggested title for the element.
• Class: Used to associate an element with a style sheet, and specifies the
class of element.
• Style: Allows you to specify Cascading Style Sheet (CSS) rules within the
element.
Core Attributes
• Dir: The dir attribute allows you to indicate to the browser about the
direction in which the text should flow. (left to right or right to left).
• Lang: The lang attribute allows you to indicate the main language used in a
document, but this attribute was kept in HTML only for backwards
compatibility with earlier versions of HTML.
• xml:lang: The xml:lang attribute is the XHTML replacement for the lang
attribute.
• Other core attributes: http://unverse.net/HTML-core-attributes
HTML Tables
• Tables represent tabular data
• A table consists of one or several rows
• Each row has one or more columns
• Tables should not be used for layout. Use CSS floats and positioning styles
instead
HTML Tables
<table cellspacing="0" cellpadding="5">
<tr>
<td><img src="ppt.gif"></td>
<td><a href="lecture1.ppt">Lecture 1</a></td>
</tr>
<tr>
<td><img src="ppt.gif"></td>
<td><a href="lecture2.ppt">Lecture 2</a></td>
</tr>
<tr>
<td><img src="zip.gif"></td>
<td><a href="lecture2-demos.zip">
Lecture 2 - Demos</a></td>
</tr>
</table>
HTML Nested Tables
• Table data “cells” (<td>) can contain nested tables (tables within tables):
<table>
<tr>
<td>Contact:</td>
<td>
<table>
<tr>
<td>First Name</td>
<td>Last Name</td>
</tr>
</table>
</td>
</tr>
</table>
HTML Tables Cells And
Padding
• Tables have two important attributes:
cellspacing cellpadding
rowspan="1"
Defines how many columns the cell Defines how many rows the cell
occupies occupies
11
HTML Tables Column and Row
Span
<table cellspacing="0">
<tr class="1"><td>Cell[1,1]</td>
<td colspan="2">Cell[2,1]</td></tr>
<tr class=“2"><td>Cell[1,2]</td>
<td rowspan="2">Cell[2,2]</td>
<td>Cell[3,2]</td></tr>
<tr class=“3"><td>Cell[1,3]</td>
<td>Cell[2,3]</td></tr>
</table>
HTML Forms
• Forms are the primary method for gathering data from site visitors.
• The HTML <form> element defines a form that is used to collect user input.
• Form elements are different types of input elements, like text fields, checkboxes,
radio buttons, submit buttons, and more.
HTML Forms
• Input element:
• The <input> element is the most important form element.
• The <input> element can be displayed in several ways, depending on the type attribute.
Type Description
<input type="text"> Defines a one-line text input field
<input type="radio"> Defines a radio button (for selecting
one of many choices)
<form action="/action_page.php">
First name:<br>
<input type="text" name="firstname" value="Mickey"><br>
Last name:<br>
<input type="text" name="lastname" value="Mouse"><br><br>
<input type="submit" value="Submit">
</form>
HTML Forms
• The action attribute defines the action to be performed when the form is
submitted.
• Normally, the form data is sent to a web page on the server when the user clicks
on the submit button.
• In the example above, the form data is sent to a page on the server called
"/action_page.php". This page contains a server-side script that handles the form
data.
• If the action attribute is omitted, the action is set to the current page.
HTML Forms
• The Method Attribute: The method attribute specifies the HTTP method (GET or
POST) to be used when submitting the form data:
Note the target attribute applied to the <a> elements in the left frame.
HTML Frames
• Inline frames provide a way to show one website inside another website: