HTML - CSS - Input Forms 2 PDF
HTML - CSS - Input Forms 2 PDF
HTML - CSS - Input Forms 2 PDF
Journalism
Lecture 06 - HTML-CSS
CENTRE OF MEDIA STUDIES, ART AND DESIGN
SHIZA NISAR
What is CSS
CSS stands for Cascading Style Sheets
CSS saves a lot of work. It can control the layout of multiple web pages all at
once
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
CSS Solved a Big Problem
To solve this problem, the World Wide Web Consortium (W3C) created CSS.
With an external stylesheet file, you can change the look of an entire website
by changing just one file!
CSS Syntax
A CSS command consists of a selector and a declaration block:
Each declaration includes a CSS property name and a value, separated by a colon.
A CSS declaration always ends with a semicolon, and declaration blocks are surrounded by curly braces.
The Element Selector
The element selector selects elements based on the element name.
You can select all <p> elements on a page like this (in this case, all <p> elements will be center-aligned, with a
red text color):
<html>
<head>
<style>
p {
color: red;
text-align: center;
}
</style>
</head>
<body>
<p>Hello World!</p>
<p>These paragraphs are styled with CSS.</p>
</body>
</html>
The Class Selector
The class selector selects elements with a specific class attribute.
To select elements with a specific class, write a period (.) character, followed by the name of the class.
In the example below, all HTML elements with class="center" will be red and center-aligned:
<html>
<head>
<style>
.center {
text-align: center;
color: red;
}
</style>
</head>
<body>
</body>
</html>
Grouping Selectors
If you have elements with the same style definitions, like this:
h1, h2, p {
text-align: center;
color: red;
}
CSS Comments
Comments are used to explain the code, /* Comments Example */
and may help when you edit the source
code at a later date.
p {
color: red;
Comments are ignored by browsers. /* This is a single-line comment */
text-align: center;
}
A CSS comment starts with /* and ends
with */. Comments can also span /* This is
multiple lines: a multi-line
comment */
Three Ways to Insert CSS
There are three ways of inserting a style sheet:
Inline style
Internal style sheet
External style sheet
Inline Style Sheet
An inline style may be used to apply a unique style for a single element.
To use inline styles, add the style attribute to the relevant element. The style attribute can
contain any CSS property.
The example below shows how to change the color and the left margin of a <h1> element:
Example
</head>
Example <body>
</body>
External Style Sheet
With an external style sheet, you can change the look of an entire website by changing just
one file!
Each page must include a reference to the external style sheet file inside the <link> element.
The <link> element goes inside the <head> section:
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
External Style Sheet
An external style sheet can be written in any text editor.
The file should not contain any html tags. The style sheet file must be saved with a .css
extension.
Here is how the "myStyle.css" looks:
body {
background-color: lightblue;
}
h1 {
color: navy;
margin-left: 20px;
}
Warning…
On the next slides, we will study few of the CSS tags with examples
font-family
The font-family property specifies the font for an element.
The name of a font-family, like "times", "courier", "arial", etc.
Use a
background
color and a text
color that
makes the text
easy to read.
opacity
The opacity
property sets the
opacity level for
an element.
The opacity-level
describes the
transparency-
level, where 1 is
not transparent at
all, 0.5 is 50% see-
through, and 0 is
completely
transparent.
Background-color
background-size
border-color
border-style
Values border-style:
none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset|ini
tial|inherit;
border-width
margin
The margin shorthand property sets all the margin properties in one declaration. This
property can have from one to four values.
Examples:
margin:10px 5px 15px 20px;
top margin is 10px
right margin is 5px
bottom margin is 15px
left margin is 20px
padding
The padding shorthand property sets all the padding properties in one declaration. This
property can have from one to four values.
Examples:
padding:10px 5px 15px 20px;
top padding is 10px
right padding is 5px
bottom padding is 15px
left padding is 20px
text-align
The text-align property specifies the
horizontal alignment of text in an
element.
text-transform
The text-transform property controls the capitalization of text.
word-wrap
The word-wrap property allows long words to be able to be broken and wrap onto the
next line.
word-wrap: normal|break-word|initial;
text-decoration
text-decoration: none|underline|overline|line-through|initial;
text-decoration-color
text-decoration-line
text-decoration-line: none|underline|overline|line-through|initial;
text-decoration-style
text-decoration-style:
solid|double|dotted|dashed|wavy|initial
text-decoration-style: solid|double|dotted|dashed|wavy|initial;
text-shadow
border-collapse: separate|collapse|initial;
caption-side
caption-side: top|bottom|initial;
table-layout
table-layout: auto|fixed|initial;
This is just a brief overview. To explore more css tags, visit following website.
http://www.w3schools.com/cssref/
<form>
First name:<br>
<input type="text" name="firstname">
<br>
Last name:<br>
<input type="text" name="lastname">
</form>
</body>
</html>
form... action attribute
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 (not included in our course) that handles the form
data
action attribute example
sample.html
<html>
<body>
<form action="home.html">
First name: <input type="text" name="FirstName" /><br/>
Last name: <input type="text" name="LastName" /><br/>
<input type="submit" value="Click me!" />
</form>
</body>
</html>
home.html
<html>
<body>
<p>Thanks for </p>
<a href="Login.html">Click here to go back</a>
<br />
</body>
</html>
Few Controls (textbox, password, radio)
TEXT
password
checkbox
color
date
email
number
radio
Sample Page
<html>
<body>
<h2>Sample Input Forms</h2>
<form action="home.html">
First name: <input type="text" name="FirstName" value="" />
<br><br>
Last name: <input type="text" name="LastName" value="" />
<br><br>
Password: <input type="password" name="password" value="" />
<br><br>
<input type="submit" value="Click me!" />
</form>
</body>
</html>
Sample Page output
Sample Page using table layout
<html>
<body>
<h2>Sample Input Forms</h2>
<form action="home.html">
<table border=0>
<tr> <td>First name:</td>
<td><input type="text" name="FirstName" value="" /></td>
</tr><tr>
<td> Last name:</td>
<td><input type="text" name="LastName" value="" /></td>
</tr><tr>
<td>Password:</td>
<td> <input type="password" name="password" value="" /></td>
</tr><tr>
<td colspan="2" align="center"><input type="submit" value="Click me!" /></td>
</tr>
</table>
</form>
</body>
</html>
Sample Page using table layout output
For more input types, visit following link:
http://www.w3schools.com/tags/att_input_type.asp
END OF LECTURE