Computer Science, asked by meetdaman73, 27 days ago

2.You are a professional Web
Designer. Government of
Gujarat has appointed you to
promote Gujarat's Tourism.
Design a web page using
HTML on Gujarat.​

Answers

Answered by tanayphadke
0

Answer:

Send ur no I will send the ppt

Answered by minzseeta37
1

Explanation:

The top section will display the heading , ‘Tourist places’ in header. The section on the left has list of cities. The right hand side displays tourist places of any one of the city .

Use Inline style sheet in the top section to display background color for the text ‘Tourist places’. Use internal stylesheet for the left and right section with background color and font styles.

Program

index.html

<!DOCTYPE html>

<html>

<head>

<title>Frameset</title>

</head>

<frameset rows="30,70">

<frame src="first.html">

<frameset cols="1,1">

<frame src="second.html">

<frame src="third.html">

</frameset>

</frameset>

</html>

first.html

<!DOCTYPE html>

<html>

<head>

<title></title>

</head>

<body style="background-color:blue ">

<h1 style="color:pink ">Tourist places</h1>

</body>

</html>

second.html

<!DOCTYPE html>

<html>

<head>

<title></title>

</head>

<body>

City

<ol type="1">

<li>Pune</li>

<li>Banglore</li>

<li>Hyderabad</li>

<li>Delhi</li>

</ol>

</body>

</html>

third.html

<!DOCTYPE html>

<html>

<head>

<title></title>

</head>

<body style="background-color: pink">

Tourist places in Pune

<ul type="disc">

<li>Shanivarwada</li>

<li>Kelkar Museum</li>

<li>Sinhgad fort</li>

</ul>

</body>

</html>

Similar questions