ASSIGNMENT-1 (PROGRAM UTILITY SOFTWARE)
PRACTICAL 1
Introduction to HTML. Create a basic HTML file
HTML is a text document with formatting codes and this document has the suffix “.html” or “.htm”.
Just write down above code in the notepad editor and save this file with the extension of .html or
.htm and then double click on that file you will get output on the default web browser.
OUTPUT
PASTE THE SCREENSHOT .
PRACTICAL –2
WRITE THE HTML CODE FOR THE BELOW TABLE:
CODE FOR DIVING THE SUB- COLUMNS
PRACTICAL 3:
EXPLAIN ALL TAGS OF HTML WITH SYNTAX AND EXAMPLE.
PRACTICAL 4:
Write a program to print a paragraph with different font
and color.
<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>
Example of HTML Program having CSS border properties