Solution For Excersize1 (Advanced Web Desigining)
Solution For Excersize1 (Advanced Web Desigining)
Shilpa Kate
10. Position is used with elements that overlap with each other.
Ans:: False
Ans:False
Ans:: True
Ans:False
Ans:: False
Ans:: False
3. A programmer wants to define range for age between 18 to 50, he will use
a form with following appropriate control.
A B
Q.7 Programs
<!doctype html>
<html>
<head>
h1{ background-color:green;color:red;font-family:comic
sans ms;text-align:center;}
p{color:blue;}
</style>
</head>
<body>
</p>
</body>
</html>
<!doctype html>
<html>
<head>
<title>program2</title>
<style>
</style>
</head>
<h1>Registration form</h1>
<form name="f1">
</form>
</body>
</html>
3.Write HTML5 code with CSS as follows-
3. Divide the list into two sections left and right by using CSS.
<!doctype html>
<html>
<head>
<title>list demo</title>
<style>
.left{background-color:skyblue;float:left;width:50%;}
.right{float:right;background-color:yellow;width:50%;}
</style>
</head>
<body>
<ol>
<li>Aurangabad</li>
<li>pune</li>
<li>Mumbai</li>
<li>Kolhapur</li>
<li>Goa</li>
</ol>
</div>
<div class="right">
<ul>
<li>Bibi ka maqbara</li>
<li>Daulatabad fort</li>
<li>Shaniwarwada</li>
<li>Gateway of India</li>
</ul>
</div>
</body>
</html>
Output