Download as pdf or txt
Download as pdf or txt
You are on page 1of 3

XII IT

1) Write a program using HTML with following CSS specifications-


a) The background colour of the company name should be in green.
b) The text colour of the company name should be red.
c) The heading should be large with font ”comic sans ms”
d) The description of the company should be displayed in blue color in a
paragraph.
Answer:
<!DOCTYPE html>
<html>
<head>
<title>Tata Motors</title>
<style>
h1{
text-align: center;
background-color: green;
color: red;
font-family: “Comic Sans MS”;
}
p{
color: blue;
}
</style>
</head>
<body>
<h1>Tata Motors</h1>
<p>
Tata Motors Limited is an Indian multinational automotive manufacturing
company, headquartered in the city of Mumbai, India which is part of Tata
Group. The company produces passenger cars, trucks, vans, coaches,
buses, luxury cars, sports cars, construction equipment.
</p>
</body>
</html>
2) Write Html5 code with CSS as follows-
a) To create form to accept name,age, email address, from the user.
b) Create a submit button to send the data.
c) The heading of the form should have a background colour and a
different font style.
Answer:
<!DOCTYPE html>
<html>
<head>
<title>User Registration Form</title>
<style>
h1{
background-color: lightgreen;
font-style: italic;
text-align: center;
}
</style>
</head>
<body>
<h1> User Registration Form</h1>
<form>
Name <input type=“text” name=“form_name”><br><br>
Age <input type=“number” name=“form_age”><br><br>
Email ID <input type=“email” name=“form_email”><br><br>
<input type=“submit” value=“Submit”>
</form>
</body>
</html>
3) Write Html5 code with CSS as follows-
a) Create ordered list with names of tourist Cities.
b) Create unordered list with tourist places of those cities.
c) Divide the list into two sections left and right by using CSS.
Answer:
<!DOCTYPE html>
<html>
<head>
<title>Cities and Places</title>
<style>
ol{
float: left;
}
ul{
float: right;
}
</style>
</head>
<body>
<ol>
<li>Agra</li>
<li>Paris</li>
<li>London</li>
<li>Pisa</li>
</ol>
<ul>
<li>Taj Mahal</li>
<li>Eiffel Tower</li>
<li>Big Ben</li>
<li>Leaning Tower of Pisa</li>
</ul>
</body>
</html>

You might also like