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

PROGRAMS

1.Design a HTML Page with below details:


1.H1: OCEANS AND RIVERS

2.Background Colour: green

3.Paragraph about oceans and rivers


4. Create an ordered list of 3 Oceans – Indian Ocean, Pacific Ocean, Arctic
Ocean
5.Create an unordered list of 3 Rivers – Ganga, Yamuna, Godavari

<html>
<head>
<title>GRADE 6</title>
<style>
body{
background-color:green;
}
</style>
</head>
<body>
<h1>OCEANS AND RIVERS</h1>
<ol>
<li>Indian Ocean</li>
<li>Pacific Ocean</li>
<li>Arctic Ocean</l i>
</ol>
<ul>
<li>Ganga</li>
<li>Yamuna</li>
<li>Godavari</li>
</ul>
<p>
Oceans are large bodies of saltwater surrounding a continent. A river is a
large flowing water body that empties itself into seas or oceans.
</p>
</body>
</html>
2. Create a football webpage.Apply your knowledge of HTML and CSS you
have learned so far including headings,title ,images,paragraph,color,text
alignment to create your web page.Use inline stylesheet to do the styling.

<html>
<head>
<title>Grade6</title>
</head>
<body style=”background-color:brown”>
<h1 style=”text-align”>FOOTBALL</h1>
<p style=”color:blue;font-size:100%”>
football, also called association football or soccer, game in which two teams
of 11 players, using any part of their bodies except their hands and arms, try to
maneuver the ball into the opposing team’s goal.
<img src=”Football.jpg” alt=”football”width=”150”height=”189”>
</p>
</body>
</html>

3.Design a Poster Webpage


<html>
<head>
<title>Grade6</title>
<style>
body
{
background-color:green;
}
p{
color:yellow;
font-size:150%;
}
</style>
</head>
<body>
<h1>MY POSTER</h1>
<img src=”../Pictures/Name of image file” width=”189” height=”123”>
<p>I like my poster</p>
</body>
</html>

You might also like