Create The Following Web Page Using HTML Coding:: Assignment 1
Create The Following Web Page Using HTML Coding:: Assignment 1
Assignment 2
Assignment 3
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>
</head>
<body bgcolor="Yellow" text="blue">
<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>
</body>
</html>
Assignment 4
Special note:
<head>
<title> Quotations</title>
</head>
<body bgcolor="pink">
<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">
<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">
<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:
<head>
</head>
<body>
<p>
Volvo travels is a premium travel agency which provides excellent holiday pacakes for domestic and
overseas destinations. Our holiday packages are:
</p>
<li> Goa
<li> Kerala
</ul>
<ul type="disc">
<li> Malasia
<li> Singapore
</ul>
</ol>
</body>
</html>