0% found this document useful (0 votes)
6K views

Practicals Web Technology

The document provides instructions for creating basic HTML files and webpages. It introduces HTML tags like <html>, <head>, <title>, and <body> and shows how to create a basic HTML file with the skeleton structure. It also demonstrates how to create static webpages using other common HTML tags like <table>, <ul>, <ol>, <dl> to display data in tables, lists and define terms. Finally, it shows how to create an HTML form with input fields to collect user information.
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6K views

Practicals Web Technology

The document provides instructions for creating basic HTML files and webpages. It introduces HTML tags like <html>, <head>, <title>, and <body> and shows how to create a basic HTML file with the skeleton structure. It also demonstrates how to create static webpages using other common HTML tags like <table>, <ul>, <ol>, <dl> to display data in tables, lists and define terms. Finally, it shows how to create an HTML form with input fields to collect user information.
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 16

PRACTICAL 1:

Introduction to HTML. Create a basic HTML file

Hyper Text Markup Language is a set of logical codes (markup) in parentheses that constitute the
appearance of a web document and the information it contains. It is a language for creating static
web pages. It specifies how the contents are to be presented on the web page. HTML is not a case
sensitive language so; HTML and html both are same.

HTML is a text document with formatting codes and this document has the suffix “.html” or “.htm”.

Basic HTML Document


An element called HTML surrounds the whole document. This element contains two sub-elements,
HEAD and BODY. These elements are required to form any HTML document.
<Html>
<Head>
<Title>The First Page</title>
</head>
<Body>
Hello World
</body>
</html>
Just write down above code in the notepad editor and save this file with the extension of .html or
.htm and then double click on that file you will get output on the default web browser.
OUTPUT

1
Following are more sub tags of <Head>
<HTML>
<HEAD> has sub-elements that define header material:
<TITLE> document title. The title of your document is what appears in a web browser’s
Favourite or Bookmark list. Search engines on the Internet use the document’s title for indexing
purposes.
</TITLE>
<BASE> can be used to record the document's location in the form of a URL. </BASE>
<ISINDEX> indicates to the browser that the document is an index document. This is used only
if the document is on a server that does indexing.
</ISINDEX>
<LINK> indicates a relationship between this document and some other object on the Web.
</LINK>
<META> provides information such as the page’s keywords and description that appears in HTTP
headers.
</META>
<SCRIPT> contains either JAVA Script or VB Script </SCRIPT>
<STYLE> contains information used by cascading style sheets </STYLE>
</HEAD>
<BODY>
the remaining HTML elements are contained within these tags.
</BODY>
</HTML>

2
PRACTICAL 2:
Create a static webpage using table tags of HTML

<html>
<body>
<TABLE BORDER="1" CELLPADDING="2">
<CAPTION ALIGN="Top"><b>Specification Table with Hours
and Marks<CAPTION>
<TR>
<TH ROWSPAN="2">Unit No.</TH>
<TH ROWSPAN="2">Unit Title</TH>
<TH ROWSPAN="2">Teaching Hours</TH>
<TH Colspan="4">Distribution of Theory Marks</TH>
</TR>
<TR>
<TD>R Level </TD>
<TD>U Level </TD>
<TD>A Level </TD>
<TD>Total Marks </TD>
</TR>
<TR>
<TD> <center>I </TD>
<TD>Introduction to Internet Technology</TD>
<TD><center>2</TD>
<TD><center>4</TD>
<TD><center>4</TD>
<TD><center>0</TD>
<TD><center>8</TD>
</TR>
<TR>
<TD> <center>II </TD>
<TD>Basics of HTML & CSS</TD>
<TD><center>6</TD>
<TD><center>0</TD>
<TD><center>2</TD>
<TD><center>6</TD>
<TD><center>8</TD>
</TR>
<TR>
<TD> <center>III </TD>
<TD>Active Server Pages 3.0</TD>
<TD><center>6</TD>
<TD><center>4</TD>
<TD><center>8</TD>
<TD><center>0</TD>
<TD><center>12</TD>
</TR>
<TR>
<TD> <center>IV </TD>
<TD>Server Side Coding with VBScript and XML</TD>
<TD><center>8</TD>
<TD><center>2</TD>
<TD><center>4</TD>
<TD><center>8</TD>

3
<TD><center>14</TD>
</TR>
<TR>
<TD> <center>V </TD>
<TD>ASP Objects & Components</TD>
<TD><center>10</TD>
<TD><center>4</TD>
<TD><center>4</TD>
<TD><center>6</TD>
<TD><center>14</TD>
</TR>
<TR>
<TD> <center>VI </TD>
<TD>Accessing database with ASP & ADO</TD>
<TD><center>10</TD>
<TD><center>4</TD>
<TD><center>4</TD>
<TD><center>6</TD>
<TD><center>14</TD>
</tr>
<TR>
<TD> </TD>
<TD><center><b>Total</TD>
<TD><center><b>42</TD>
<TD><center><b>18</TD>
<TD><center><b>26</TD>
<TD><center><b>26</TD>
<TD><center><b>70</TD>
</tr>
</TABLE>
</body>
</html>

OUTPUT

4
PRACTICAL 3:
Create a static web page which defines all text formatting tags of HTML in tabular format

<html>
<body>
<center>
<table border=1>
<caption align="top"><font size="+2" color="red">Text
Formatting Tags</font> </caption>
<tr>
<th>HTML Tag</th>
<th>Output</th>
</tr
>
<tr> <td>normal text</td>
<td>hello world</td>

</tr
> <td>Font & its attributes</td>
<tr> <td><FONT SIZE="+2" COLOR="#RRGGBB"> hello world
</FONT></td>
</tr>
<tr>
</tr>
<tr>
</tr
>
<tr> </tr>

</tr
>
<tr>

</tr
>
<tr>

</tr
>
<tr>

</tr
>
<tr>

</tr
>
<tr>

5
<td>&lt;B&g
t;</td>
<td><B> <td>&lt;EM&gt;</td>
Bold <td><EM> Emphasis </EM></td>
</B></td>

<td>&lt;STRONG&gt;</td>
<td>&lt;I&g <td><STRONG> STRONG </STRONG></td>
t;</td>
<td><I>
Italic <td>&lt;TELETYPE&gt;</td>
</I></td> <td><TT> TELETYPE </TT></td>

<td>&lt;U&g <td>&lt;CITE&gt;</td>
t;</td> <td><CITE> Citation </CITE></td>
<td><U>
Underline
</U></td> <td>&lt;STRIKE&gt;</td>
<td><STRIKE> strike-through text </STRIKE></td>
<tr>
<td>&lt;BIG&gt;</td>
<td><BIG> text in a big font </BIG></td>
</tr
>
<tr> <td>&lt;SMALL&gt;</td>
<td><SMALL> text in a small font <SMALL></td>
</tr
> <td>&lt;SUB&gt;</td>
<tr> <td>a<SUB> b </SUB></td>

</tr <td>&lt;SUP&gt;</td>
> <td>a<SUP> b</SUP></td>
<tr>

</tr
>
</table>
</body>
</html>

OUTPUT

6
7
PRACTICAL 4:
Create webpage using list tags of HTML

<html>
<body>
<b> HTML List: Ordered, Unordered & Definition List</b>
<hr>

Following is the list of proposed student activities like:

<OL type=1>
<li>Develop programs related with unit vice topics in
computer laboratory.</li>
<li>Develop any module of to be useful in real life
application.</li>
<li>Multimedia presentation of module developed by
students.</li>
</OL>
<hr>

List of Software/Learning Websites

<UL>
<li><u>ASP Tutorial - W3Schools</u><br>
<a href=http://www.w3schools.com/asp/>
www.w3schools.com/asp</a></li>
<li><u>Classic ASP Tutorials & Articles - Web Wiz</u><br>
<a href="http://www.webwiz.co.uk">www.webwiz.co.uk -
Knowledgebase</a></li>
<li><u>HTML Tutorial - W3Schools</u><br>
<a href="http://www.w3schools.com/html/">
www.w3schools.com/html</a></li>
<li><u>CSS Tutorial</u><br>
<a href="http://www.csstutorial.net/">
www.csstutorial.net</a></li>
<li><u>VBScript Tutorial - Tutorials Point</u><br>
<a
href="http://www.tutorialspoint.com/vbscript/index.htm">
www.tutorialspoint.com/vbscript/index.htm</a></li>
<li><u>ADO Tutorial - W3Schools</u><br>
<a href="http://www.w3schools.com/ADO/default.asp">
www.w3schools.com/ADO/default.asp</a></li>
</UL>
<hr>

<DL>
<DT>HTML</DT>
<DD>Hyper Text Markup Language</DD>
<DT>XML</DT>
<DD>eXtensible Markup Language</DD>
</DL>
</body>
</html>

8
OUTPUT

9
PRACTICAL 5:
Create employee registration webpage using HTML form objects
<html>
<body>
<Center>
<img src="employee_icon.png" height=52 width=52>
<Font size="+3" color=red>Employee Registration Form</font>
<form method=post action="prac.html">
<table>
<tr>
<td></td>
<td><input type=radio name=initial checked>Mr.
<input type=radio name=initial>Mrs.
<input type=radio name=initial>Ms.</td>
</tr><tr>
<td>First Name</td>
<td><input type=text name=fn placeholder="First Name"></td>
</tr><tr>
<td>Last Name</td>
<td><input type=text name=ln placeholder="Last Name"></td>
</tr> <tr>
<td>Mail Address1</td>
<td><input type=text name=add1></td>
</tr><tr>
<td>Mail Address2</td>
<td><input type=text name=add2></td>
</tr><tr>
<td>City</td>
<td><input type=text name=ct></td>
</tr><tr>
<td>State</td>
<td><select name=state>
<option value="Gujarat">Gujarat
<option value="Maharastra">Maharastra
<option value="Karnataka">Karnataka
<option value="Delhi">Delhi
</select>
</td>
</tr><tr>
<td>Zip</td>
<td><input type=text name=zp></td>
</tr><tr>
<td>Upload Photo</td>
<td><input type=file name=photo></td>
</tr><tr>
<td>E-Mail</td>
<td><input type=text name=email size=30></td>
</tr><tr>
<td>Mobile</td>
<td><input type=text name=mob placeholder="+91"></td>
</tr><tr>
<td>Languages known</td>
<td><input type=checkbox name=lk value=Gujarati
checked>Gujarati</td>

10
</tr><tr>
<td></td>
<td><input type=checkbox name=lk value=Hindi
checked>Hindi</td>
</tr><tr>
<td></td>
<td><input type=checkbox name=lk value=English
checked>English</td>
</tr><tr>
<td></td>
<td><input type=checkbox name=lk value=Marathi >Marathi</td>
</tr><tr>
<td>Additional Information</td>
<td><textarea name=add rows=3 cols=20 placeholder="Optional"
wrap></textarea></td>
</tr><tr>
<td></td>
<td><input type=submit value=submit>&nbsp;<input type=reset
value=reset></td>
</table>
</form>
</body>
</html>

OUTPUT

11
PRACTICAL 6:
Apply style sheet in Web page. [inline, embedded and linked]
 ext.css
hr
{
color:sienna;
}
p
{
margin-left:20px;
}
bod
y
{ background-image:url("sheet.jpg");

}
 stylesheet.html
<html>
<head>
<link rel="stylesheet" type="text/css" href="ext.css">
<style>
h1
{
background-color:#6495ed;
}
p
{
background-color:#e0ffff;
}
div
{
background-color:#b0c4de;
}
</style>
</head>
<body>

<h2>Internal, External & Inline Style!</h1>


<div>Text inside a div element.
<p>paragraph background color</p>
still in the div element.
</div>
<p style="color:red;margin-left:20px;">Hello world.</p>
</body>
</html>

12
OUTPUT

13
PRACTICAL 7:
Create a dynamic web page which displays a message “Welcome to ASP” using VBScript

<html>
<body>
<%
response.Write("Welcome to ASP")
response.Write("<br>")
response.Write("HTML")
%>
<b> ASP
</b>
<% response.Write("<br>")
response.Write("XML")

%>
</body>
</html>

OUTPUT

14
PRACTICAL 8:
Create a dynamic web page which prints Fibonacci series from 1 to 10 in VBScript

<html>
<body
> <center>
<% dim a,b,c,i
a=0
b=1
for i=1 to 10
c=a+b
response.write b
response.write "<br/>"
a=b
b=c
next
%>
</center>
</body>
</html>

OUTPUT

15
16

You might also like