WEB Technologies: Kunal Kumar
WEB Technologies: Kunal Kumar
TECHNOLOGIES
Kunal Kumar
MCA 4th sem
INDEX
S.NO
EXERCISE
DATE
TEACHER SIGN.
Lab Exercise 1
Dated: January 29, 2015
Q1:- Write an HTML code for the following document.
WEBSITE
Visual Studio 2008 Readme
To view the most up-to-date version of the Visual Studio 2008
Readme, click here.
Table of Contents
1. System Requirements
Supported Architectures
Supported Operating Systems
Hardware Requirements
2. Known Issues
o Installing
o Uninstalling
o On computers that have earlier versions of Visual Studio
o On computers that do not have earlier versions of Visual
Studio
3. Product Issues
a General Issues
b ADO.NET
c Languages
d LINQ
e Visual Studio Tools for Office
4. Web Development
i. Windows Communication Foundation (WCF) Tools
ii. Windows Presentation Foundation (WPF) Designer for Visual
Studio
iii. Windows Workflow Foundation (WF) Tools
iv. Windows SDK Integration
5. Related Links
1. System Requirements
A. Supported Architectures
x86
x64 (WOW)
B. Supported Operating Systems
Microsoft Windows XP
Microsoft Windows Server 2003
Windows Vista
C. Hardware Requirements
Minimum: 1.6 GHz CPU, 384 MB RAM, 1024x768 display,
5400 RPM hard disk
Recommended: 2.2 GHz or higher CPU, 1024 MB or more
RAM, 1280x1024 display, 7200 RPM or higher hard disk
On Windows Vista: 2.4 GHz CPU, 768 MB RAM
Sol:<html>
<head>
<title>Website</title>
</head>
<body>
<center><h1><u>WEBSITE</u></h1></center>
<p>
<h1>Visual Studio 2008 Readme</h1>
To view the most up-to-to-date version of the Visual Studio 2008
Readme, click <a href="1.html">here</a>
<h2>Table of contents</h2><b>
<ol>
<a href="1.html"><li>System Requirements</a>
<ul type="disc">
<a href="1.html"><li>Supported Architectures</a>
<a href="1.html"><li>Supported Operating systems</a>
<a href="1.html"><li>Hardware Requirements</a>
</ul>
<a href="1.html"><li>Known Issues</a>
<ul type="circle">
<a href="1.html"><li>Installing</a>
<a href="1.html"><li>Uninstalling</a>
<a href="1.html"><li>On computers that have earlier versions
of Visual Studio</a>
<a href="1.html"><li>On computers that do not have earlier
versions of Visual Studio</a>
</ul>
<a href="1.html"><li>Product Issues</a>
<ol type="a">
<a href="1.html"><li>General Issues</a>
<a href="1.html"><li>ADO.NET</a>
<a href="1.html"><li>Languages</a>
<a href="1.html"><li>LINQ</a>
<a href="1.html"><li>Visual Studio Tools for Office</a>
</ol>
<a href="1.html"><li>Web Development</a>
<ol type="i">
<a href="1.html"><li>Windows Communication Foundation
(WCF) Tools</a>
<a href="1.html"><li>Windows Presentation Foundation (WPF)
Designer for Visual Studio</a>
Sol:<html>
<head>
<title>table</title>
</head>
<body>
<table border="5" align="center">
<caption align="top">TABLE</caption>
<tr align="center">
<th>S.No</th>
<th>ITEM</th>
<th>UNIT PRICE</th>
<th>QUANTITY</th>
<th>TOTAL</th>
</tr>
<tr align="center">
<td>1</td>
<td>CD</td>
<td>100</td>
<td>50</td>
<td>5000</td>
</tr>
<tr align="center">
<td>2</td>
<td>Glue</td>
<td>50</td>
<td bgcolor="aqua">100</td>
<td>5000</td>
</tr>
<tr align="center">
<td>3</td>
<td>Pencil</td>
<td>100</td>
<td>50</td>
<td>5000</td>
</tr>
<tr align="center">
<td>4</td>
<td>Pen</td>
<td>50</td>
<td>100</td>
<td>5000</td>
</tr>
</table>
</body>
</html>
Q4:- Create a Web page giving the following train details. Train
name Starting Place Destination Arrival and Departure time Fare
Place a border for the table and use cell padding to present the
cell data with clarity. Align the table in the center of the screen.
Use a caption saying Time table and Fare list
Sol:<html>
<head>
<title>table</title>
</head>
<body>
<table border="5" align="center" cellpadding="20">
<caption align="top">TIME TABLE AND FARE LIST</caption>
<tr align="center">
<th>Train Name</th>
<th>Starting Place</th>
<th>Destination</th>
<th>Arrival Time</th>
<th>Departure Time</th>
<th>Fare</th>
</tr>
<tr align="center">
<td>Rajhdhani Express</td>
<td>New Delhi</td>
<td>Chandigarh</td>
<td>06:45</td>
<td>07:00</td>
<td>1500</td>
</tr>
<tr align="center">
<td>Amritsar Express</td>
<td>New Delhi</td>
<td>Amritsar</td>
<td>05:45</td>
<td>06:00</td>
<td>2000</td>
</tr>
<tr align="center">
<td>Shatabadi</td>
<td>Jammu</td>
<td>New Delhi</td>
<td>06:00</td>
<td>06:15</td>
<td>2500</td>
</tr>
<tr align="center">
<td>Kerala Express</td>
<td>Nizamuddin</td>
<td>Kerala</td>
<td>08:00</td>
<td>08:15</td>
<td>3000</td>
</tr>
</table>
</body>
</html>
Q5:- Create a document with two links to an external document.
The first link should lead to the beginning of the external
document. The second link should lead to a particular section in
the external document.
Sol:<html>
<head>
<title>linking</title>
</head>
<body>
<p>
<b>
<a href="q2.html">My Details</a><br>
<a href="q1.html #pos">Image</a>
</b>
</p>
</body>
</html>
File2
<html>
<body>
<a name=pos>Image</a>
</body>
</html>