In: Computer Science
FOR HTML Web scripting
Complete the following:
Dear Student ,
As per the requirement submitted above , kindly find the below solution.
NOTE :MAKE REQUIRED CHANGES AS PER NEED IN THE CONTENTS.
state.html :
<!DOCTYPE html>
<html lang="en">
<head>
<!-- title for web page -->
<title>State Page</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- style is used for internal stylesheet -->
<style>
/* style for p1 */
.p1{
margin-left: 20px;
margin-right: 20px;
background-color: pink;
color: blue;
}
/* style for p2 */
.p2{
margin-left: 30px;
margin-right: 30px;
background-color: black;
color: yellow;
}
/* style for p3 */
.p3{
text-indent: 1cm;
margin-left: 30px;
margin-right: 30px;
background-color: green;
color: white;
}
</style>
</head>
<body>
<p class="p1">This state has historical bindings.The state is known for culturl activities.</p>
<p class="p2">The state has produced many sports persons.</p>
<p class="p3">State is coverd with sea around it.</p>
<p class="p1">State is one of the economical capital of the country.</p>
<p class="p2">State has contains art and movie culture. </p>
<p class="p3">
State includes lots of industrial sectors like automobile , IT etc.
</p>
</body>
</html>
******************************
state.html :
====================================
cars.html :
<!DOCTYPE html>
<html lang="en">
<head>
<!-- title for web page -->
<title>Cars Page</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<ol type="I">
<li style="background-color: Pink">compact
<ol type="A">
<li> two door</li>
<ol>
<li>Ford , Figo</li>
<li>Maruti Suzuki , WagonR</li>
<li>Hundai, Santro</li>
</ol>
<li> four door</li>
<ol>
<li>Mahondra , Scorpio</li>
<li>Maruti Suzuki , Baleno</li>
<li>Tata , tiago</li>
</ol>
</ol>
</li>
<li style="background-color: blue">midsize
<ol type="A">
<li> two door</li>
<ol>
<li>Tata, Nano</li>
<li>Wolkswagon , Polo</li>
<li>Toyato , Qualis</li>
</ol>
<li> four door</li>
<ol>
<li>Tata, Fortuner</li>
<li>Audi , Q7</li>
<li>BMW,X4</li>
</ol>
</ol>
</li>
<li style="background-color: red">sports
<ol type="A">
<li>coupe </li>
<ol>
<li>Shevrolet, Sparks</li>
<li>Jeep, Compas</li>
<li>Maruti Suzuki , Brezza</li>
</ol>
<li>convertible</li>
<ol>
<li>Maruti Suzuki, Scross</li>
<li>Wolkswagon , Vento</li>
<li>Toyato , Altis</li>
</ol>
</ol>
</li>
</ol>
</body>
</html>
****************************
cars.html :
NOTE : PLEASE FEEL FREE TO PROVIDE FEEDBACK ABOUT THE SOLUTION.