SWPD Manual
SWPD Manual
EXPERIMENT: 1
Aim:- ANALYZE 5 WEBSITE ON TERMS OF USABILITY AND
ACCESSIBILITY TERMS.
Objectives:
http:// www.discoverychannel.co.in
In the top part of website pictures are automatically changing and we can show them again
by clicking on their
Mini Icons.
In the download part of the webpage ,there are some option are available which can be
helpful to know more
Fig-1
Home/Video/Shows/TV Listing/Find US
File Hippo:-
http:// www.filehippo.com
We can search our require softwares by clicking and typing in search box.
Search Go
We can see website in other languages by take our cursor and select from list shown below:
English
Deutsch
Espanol
Francais
Italino
Polski
Popular Software
1.CCleaner 3.27.1900
2. avast free antivirus 7.0.1474
3. Skype 6.1.0.129
4. google chrome 25.0.1364.68
beta
5. adobe reader 11.0.01
6. VLC media player 2.0.5(32 bits)
View More
GTU:-
http://www.gtu.ac.in
This website is used for know about time table of exam, syllabus, results of any exams for
engineering branch of
We can select exams from popup menu for knowing result of exam.
Winter 2012
Select Exam
Summer 2012
Select Exam
Help 2 Engg:-
http:// www.help2engg.com
There are latest updates are shown on left side of the webpage.
At the right side of the webpage. We can sign in website.(If we have created our account on
it.)
User ID
Password
Sign In
Yahoo:-
http:// www.yahoo.com
Search
Answer
Astrology
Cricket
Dainik Jagran
Finance
Flickr
Game
EXPERIMENT: 2
Aim:-DESIGN HTML PAGE WITH TABLE
<body>
<table border="1">
<caption>Monthly savings</caption>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr> <tr>
<td>February</td>
<td>$50</td>
</tr>
</table>
</body>
</html>
<body>
<tr>
<th>Name</th>
<th colspan="2">Telephone</th>
</tr>
<tr>
<td>Bill Gates</td>
<td>555 77 854</td>
<td>555 77 855</td>
</tr>
</table>
<table border="1">
<tr>
<th>First Name:</th>
<td>Bill Gates</td>
</tr>
<tr>
<th rowspan="2">Telephone:</th>
<td>555 77 854</td>
</tr>
<tr>
<td>555 77 855</td>
</tr>
</body>
</html>
<h4>Without cellpadding:</h4>
<table border="1">
<tr>
<td>First</td>
<td>Row</td>
</tr>
<tr>
<td>Second</td>
<td>Row</td>
</tr>
</table>
<h4>With cellpadding:</h4>
<table border="1"
cellpadding="10">
<tr>
<td>First</td>
<td>Row</td>
</tr>
<tr>
<td>Second</td>
<td>Row</td>
</tr>
</table>
</body>
</html>
4) Table with cell spacing
<html>
<body>
<h4>Without cellspacing:</h4>
<table border="1">
</tr>
</table>
<h4>With cellspacing="0":</h4>
<table border="1" cellspacing="0">
<tr>
<td>First</td>
<td>Row</td>
</tr>
<tr>
<td>Second</td>
<td>Row</td>
</tr>
</table>
<h4>With cellspacing="10":</h4>
<table border="1" cellspacing="10">
<tr>
<table border="1">
<tr>
<td>
<p>This is a paragraph</p>
<p>This is another paragraph</p>
</td>
<td>This cell contains a table:
<table border="1">
<tr>
EXPERIMENT: 3
AIM:-DESIGN HTML PAGE WITH FORM.
<html>
<body bgcolor="yellow">
<form>
<select name="dist">
</select><br>
</font>
</form>
</body>
</html>
EXPERIMENT: 4
AIM:-DESIGN HTML PAGE WITH HYPERLINK AND IMAGE
<html>
<li>name:-krishna
<li>roll no:-123456789
</ol></marquee>
</body>
</img>
</font>
<a href="KRISHNA.html">krishna</a>
</body>
</html>
EXPERIMENT: 5
AIM:-DESIGN HTML PAGE WITH FRAMESET
Vertical frame
<html>
<frameset cols="45%,*,35%">
<frame src="frame_a.htm">
<frame src="frame_b.htm">
<frame src="frame_c.htm">
</frameset>
</html>
Horizontal frame
<html>
<frameset rows="25%,*,25%">
<frame src="frame_a.htm">
<frame src="frame_b.htm">
<frame src="frame_c.htm">
</frameset>
</html>
<html>
MIXED frame
<frameset rows="50%,50%">
<frame src="frame_a.htm">
<frameset cols="25%,75%">
<frame src="frame_b.htm">
<frame src="frame_c.htm">
</frameset>
</frameset>
</html>
<frameset cols="50%,50%">
</frameset>
</html>
<frameset cols="50%,50%">
<html>
<frameset cols="50%,50%">
<frame src="frame_b.htm">
</frameset>
</html>
EXPERIMENT: 6
AIM:-DEVLOP VARIOUS PAGES USING CASCADING STYLE SHEET
TO STYLE YOUR PAGE
INLINE:
<html>
<head>
<title>Example</title>
</head>
<body style="background-color: #FF0000;">
<p>This is a red page</p>
</body>
</html>
INTERNAL:
<html>
<head>
<title>Example</title>
<style type="text/css">
body {background-color: #FF0000;}
</style>
</head>
<body>
<p>This is a red page</p>
</body>
</html>
EXTERNAL:
HTML file:
<html>
<head>
<title>My document</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<h1>My first stylesheet</h1>
</body>
</html>
CSS file:
body {
background-color: #FF0000;
}
EXTERNAL:
body {
background-color: #FFCC66;
}
h1 {
color: #990000;
background-color: #FC9804;
}
body {
background-color: #FFCC66;
background-image: url("butterfly.gif");
}
h1 {
color: #990000;
background-color: #FC9804;
}
body {
background-color: #FFCC66;
background-image: url("butterfly.gif");
background-repeat: no-repeat;
}
h1 {
color: #990000;
background-color: #FC9804;
}
body {
h1 {
color: #990000;
background-color: #FC9804;
}
p{
font-style: italic;
font-weight: bold;
font-size: 30px;
font-family: arial, sans-serif;
}
h1 {
letter-spacing: 6px;
}
p{
letter-spacing: 3px;
}
h1 {
text-decoration: underline;
}
h2 {
text-decoration: overline;
}
h3 {
text-decoration: line-through;
}
a:link {
color: blue;
}
a:visited {
color: red;
}
EXPERIMENT: 7
AIM:-DEVLOP VARIOUS PAGES USING CSS SELECTOR AND
EMBEDDED STYLE SHEETS
Examples :
<html>
<head>
<style type="text/css">
h1{
color = red;
size=60px;
body{
font{
font face:harlowsoliditalic;
</style>
<body >
<h1><li>roll no:-123456</h1>
</ol></marquee>
</body>
</html>
EXPERIMENT: 8
AIM:-STYLING TABLE WITH HELP OF CSS
Table Borders:
table, th, td
{
border: 1px solid black;
}
Collapse Borders:
table
{
border-collapse:collapse;
}
table,th, td
{
border: 1px solid black;
}
Table Width and Height:
table
{
width:100%;
}
th
{
height:50px;
}
Table Text Alignment:
td
{
text-align:right;
Vertical-align:bottom;
}
Table Padding:
td
{
padding:15px;
}
Table Color:
table, td, th
{
border:1px solid green;
}
th
{
background-color:green;
color:white;
}
EXPERIMENT: 9
AIM:-TO STUDY ABOUT VARIOUS FEATURES OF DREAMWEAVER
INTERFACE
Features:
Adobe Dreamweaver is a web design and development application that provides a visual editor
and a code editor with standard features such as syntax highlighting, code completion, and code
collapsing as well as more sophisticated features such as real-time syntax checking and code
introspection for generating code hints to assist the user in writing code. The Design view
facilitates rapid layout design and code generation as it allows users to quickly create and
manipulate the layout of HTML elements. Dreamweaver features an integrated browser for
previewing developed WebPages in the program's own preview pane in addition to allowing
content to be open in locally installed web browsers. It provides transfer and synchronization
features, the ability to find and replace lines of text or code by search terms or regular
expressions across the entire site, and a tinplating feature that allows single-source update of
shared code and layout across entire sites without server-side includes or scripting. The
behaviors panel also enables use of basic JavaScript without any coding knowledge, and
integration with Adobe's Spry Ajax framework offers easy access to dynamically-generated
content and interfaces.
Recent versions have improved support for Web technologies such as CSS, JavaScript, and
various server languages and frameworks including ASP (ASP JavaScript, ASP VBScript,
ASP.NET C#, ASP.NET VB),ColdFusion, Scriptlet, and PHP.
Language availability
Adobe Dreamweaver CS6 is available in the following languages: Brazilian Portuguese, Chinese
Simplified, Chinese Traditional, Czech, Dutch, English, French, German, Italian, Japanese,
Korean (Windows only), Polish, Russian, Spanish, Swedish, and Turkish.
Action Script
Active Server Pages (ASP).
C#
Cascading Style Sheets (CSS)
ColdFusion
EDML
Extensible Hypertext Markup Language (XHTML)
Extensible Markup Language (XML)
Extensible Style sheet Language Transformations (XSLT)
Hypertext Markup Language (HTML)
Java
JavaScript
PHP: Hypertext Preprocessor (PHP)
Visual Basic (VB)
Visual Basic Script Edition (VBScript)
Wireless Markup Language (WML)
EXPERIMENT: 10
AIM:-DEVLOP BASIC SITES WITH USE OF DREAMWEAVER
EXPERIMENT: 11
AIM:-CREATE MINI WEBSITE USING HTML AND CSS
Students prepare one small website with the use of text editor (Ex. notepad).
EXPERIMENT: 12
AIM:- HOST THE DESIGNED WEBSITE ON ANY WEB SERVER
With the use of WAMP SERVER we can host our website on local host.
Students will host website on local host.