Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
1K views

Create The Following Web Page Using HTML Coding:: Assignment 1

The document provides instructions for creating HTML code for several webpages and assignments: 1. The first assignment asks to create a webpage on the tourism industry with specific formatting details. 2. The second assignment provides instructions to code another webpage welcoming users to India with packages to Rajasthan and Kerala. 3. The third assignment gives directions to create a simple webpage with colored text and paragraphs of words. 4. The fourth assignment outlines how to code a webpage displaying quotations with different styles and colors. 5. The fifth assignment lists requirements for a travel agency webpage promoting domestic and overseas packages.

Uploaded by

Abhilasha Gig
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
1K views

Create The Following Web Page Using HTML Coding:: Assignment 1

The document provides instructions for creating HTML code for several webpages and assignments: 1. The first assignment asks to create a webpage on the tourism industry with specific formatting details. 2. The second assignment provides instructions to code another webpage welcoming users to India with packages to Rajasthan and Kerala. 3. The third assignment gives directions to create a simple webpage with colored text and paragraphs of words. 4. The fourth assignment outlines how to code a webpage displaying quotations with different styles and colors. 5. The fifth assignment lists requirements for a travel agency webpage promoting domestic and overseas packages.

Uploaded by

Abhilasha Gig
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 10

Assignment 1

1. Create the following web page using HTML coding:

Consider the following while writing the HTML code


1. Title of the page should be "Tourism Industry"
2. Background colour of the page should be "Silver", Link colour should be "Maroon",
visited link colour should be "Red".
3. Picture used in the page is the file "beach.jpg"
4. Table should have a border of width 2.
5. Use the concept of nested lists for creating the list given in the web page with
specified bullets.
6. Page linked to: Front Office is "front.html"
Food & Beverages is "food.html"
HTML CODE:-
<HTML>
<HEAD>
<TITLE>Tourism Industry</TITLE>
</HEAD>
<BODY bgcolor="Silver" link="Maroon" vlink="red">
<center><H2>Hospitality Industry</H2></center>
<imgsrc="D:\APS\Content\10\IMG\beach.jpg" align="right">
<p>
One of the Industries which is on the path of rapid growth is the hospitality industry.
<br>
The hotels today aims to provide services at competitive prices.
</p>
<b>Hotels are broadly classfiedas:</b>
<table border="2" align="center">
<tr>
<th>Hotels</th>
<th>Resorts</th>
</tr>
<tr>
<td>Leisure Hotels</td>
<td>Hill resorts</td>
</tr>
<tr>
<td>Business Hotels</td>
<td>Beach resorts</td>
</tr>
<tr>
<td>Budget Hotels</td>
<td>Heritage resorts</td>
</tr>
</table>
<b>Deparments in a Hotels</b>
<ol type="1" start="1">
<li><a href="front.html">Front Office</a>
<ul type="circle">
<li> Reservations
<li> Receptions
<li> Guest Relations
</ul>
<li><a href="food.html">Food and Beverages</a>
<ul type="square">
<li> Room Service
<li> Coffee shop
<li> Restaurant
</ul>
</ol>
</BODY>
</HTML>

Assignment 2

Write HTML code to create the Web page shown here:


Consider the following while writing the HTML code:
1. Background colour of the page should be “Gray” and visited link colour should be “Green”
2. Font face of text in the page should be “Arial”
3. Text color of main heading should be “Maroon”
4. Picture used in the page is the file “happy_holiday.jpg”.
5. The text “GhumoPhiro Travels” should be in “Red” colour and in “Bold”
6. Pages linked to:
a. Rajasthan package as “raj.html”
b. Kerala package as “kerala.html”
7. The table should have a caption “Tariff”
8. Bottom message should be of size 2.
<html>
<head>
<title>Assignment2</title>
</head>
<body bgcolor="gray" vlink="green">
<basefont face="Arial">
<font color="maroon">
<center><h4> WELCOME TO INDIA </h4></center>
</font>
<hr>
<imgsrc="happy_holiday.jpg" align="center">
<b><font color="red">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;GhumoPhiro
Travels</font></b>
<ol type="1" start="1">
<li><a href="raj.html">Rajsthan Package</a>
<ul type="disc">
<li> Jaipur
<li> Udaipur
<li> Pushkar
</ul>
<li><a href="kerala.html">Kerala Package</a>
<ul type="circle">
<li>Kumarokom Resort
<li>Periyar Wildlife Sanctuary
<li>Kovalam beach
</ul>
</ol>
We offer the following packages:
<table align="center">
<caption>Tarrif</caption>
<tr>
<th>Package</th>
<th>Normal</th>
<th>Deluxe</th>
</tr>
<tr>
<td>Rajasthan</td>
<td>Rs.7000</td>
<td>Rs.10,500</td>
</tr>
<tr>
<td>Kerala</td>
<td>Rs.11,500</td>
<td>Rs.18,500</td>
</tr>
</table>
<hr>
<center><font size="2">For enquires<a href="mailto:abc@gmail.com"> Mail to
us</a></font></center>
</basefont>
</body>
</html>

Assignment 3

Create a webpage as shown below, by using appropriate HTML tags.

 The title of the web page should be “My first web page”.
 The background color of the page should be Yellow
 The color of the text should be Blue
 Type the text in four paragraphs as shown in the web page output
 Change the size of the text to match the web page output shown.

Solution:-

<html>

<head>

<title> My first web page</title>

</head>
<body bgcolor="Yellow" text="blue">

<h1 align="center">WORDS OF WISDOM</h1>

<hr>

<p align="center">A man dies daily, only to be reborn in the morning, <b> bigger, better and
wiser</b></p>

<p align="center">A singlr moment of understanding can <b>flood a whole life with meaning</b></p>

<p align="center">A single conversation across a table <b>with a wise man is worth a month's study of
books</b></p>

<p align="center">A prudent question is <b>one-half of wisdom</b></p>

</body>

</html>

Assignment 4

Create a new HTML file pollution.html with the following details:

Special note:

 Title of the web page should be : Quotations


 Background color should be Pink
 Give a heading to each quotation. The heading size of each quotation heading should be less than its
previous quotations heading.
 Add a line break after quotation heading.
 Display each quote as a paragraph.
 Add a Horizontal ruler of a different color after each quotation.
 Italicize the text of each quotation. The text color of quotes should be different, in Arial font with
size 14.
 Save this file
<html>

<head>

<title> Quotations</title>

</head>

<body bgcolor="pink">

<h1 align="center">WEALTH IS HEALTH</h1>

<br>

<p>

<font face="Arial" size="14"><i>I believe in this strongly as if you don't have any money you can't eat for
good health. Of course happiness counts, but wealth equally counts for the good health.</i></font>

</p>

<hr color="blue">

<h2 align="center">A FRIEND INDEED IS ALWAYS IN A NEED</h1>

<br>

<p>

<font face="Arial" size="14"><i>You think about it and you will find the above saying very true. A true
friend of yours is always in need of your things.</i></font>
</p>

<hr color="brown">

<h3 align="center">IF YOU CANNOT JOIN THEM BEAT THEM</h1>

<br>

<p>

<font face="Arial" size="14"><i>Again it is very true, those who don't allow you to join the group,
deserve a good beating</i></font>

</p>

<hr color="red">

</body>

</html>

Assignment 5

Create a web page using HTML coding for a travel agency. Consider the following while creating the
HTML code:

1. Title of the page should be Volvo Travel official website.


2. Display the website name in blue colour, Georgia font and in 22 point size.
3. The list items ‘Domestic packages’ and ‘Overseas packages’ should be in orange color.
4. Consider the packages names as nested list items under ‘Domestic’ and ‘Oversea’ packages.
<html>

<head>

<title>Volvo Travel official website</title>

</head>

<body>

<font face="georgia" size="22" color="blue">Volvotravels.com</font>

<p>

Volvo travels is a premium travel agency which provides excellent holiday pacakes for domestic and
overseas destinations. Our holiday packages are:

</p>

<ol type="I" start="I">

<li> <font color="orange">Domestic Package</font>


<ul type="disc">

<li> Goa

<li> Kerala

<li> Sri Nagar

</ul>

<li> <font color="orange">Overseas Package</font>

<ul type="disc">

<li> Malasia

<li> Singapore

<li> Hong Kong

</ul>

</ol>

<p> For more details contect - 42248446, 43338222</p>

</body>

</html>

You might also like