HTML All Exercises & Assignments

Write an HTML program to display hello world.

Description: You need to write an HTML program to display hello world on screen.

Hint: You need to type Hello World inside the body tag.

<html>
<body>
Delhi
</body>
</html>
Tutorials Class - Output Window

Delhi

Write a program to create a webpage to print values 1 to 5

Description: Write a program to create a webpage to print values 1 to 5 on the screen.

Hint: Put values inside the body tag.

<html>
<body>
1 2 3 4 5
</body>
</html>
Tutorials Class - Output Window

12345

Write a program to create a webpage to print your city name in red color.

Description: Write a program to create a webpage to print your city name in red color.

Hint: You need to put the city name inside the body tag and use color attribute to provide the color.

<html>
<body>
<font color="red">Delhi</font>
</body>
</html>

Delhi

Write a program to print a paragraph with different font and color.

Description: Create a webpage to print a paragraph with 4 – 5 sentences. Each sentence should be in a different font and color.

Hint: Put the paragraph content inside the body tag and paragraph should be enclosed in <p> tag.

<html>
<body>
<p>
<font face="Arial" color="red">
Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.
</font> 

<font face="Times New Roman" color="green">It is the core
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
</font> 

<font face="Verdana" color="blue">
It has survived not only five centuries.
</font> 

<font face="Helvetica" color="yellow">
It is a long established fact that a reader will be distracted by the 
readable content of a page when looking at its layout.
</font>
</p>
</body>
</html>