HTML PROGRAMS 6 SEPT 2023
PROGRAM 1
Design a page having suitable background colour and text colour with title “My First Web Page” using all the attributes of the Font tag.
<html>
<head>
<title> My first web page </title>
</head>
<body bgcolor="green">
<font size="16" color="white" face="arial">
Welcome to St kabeer academy </font>
</body>
</html>
PROGRAM2
Write HTML code to design a page containing some text in a paragraph by giving suitable heading style.
<html>
<head>
<title> program 2 </title>
</head>
<body>
<center>
<h1> Basic Web design Lab </h1>
</center>
<h2 align="left">Definition </h2>
<h3 align="left> Website </h3>
<p>
a set of inter connected webpages
</p>
</body>
</html>
output:-
Basic Web design Lab
Definition
Website
A set of inter connected web pages usually including a home page and many other web pages
PROGRAM 3
Write the HTML code to generate the following output of a table with content exactly in the same format as shown within the table:
Marks | |||
---|---|---|---|
English | Hindi | Maths | Science |
Welcome to AITS, TIRUPATI...Welcome to AITS, TIRUPATI...
Welcome to AITS, TIRUPATI...
Welcome to AITS, TIRUPATI...
Comments
Post a Comment