HTML Program List
HTML Program List
Program 1
<html>
<head>
<title> STD 6 </title>
</head>
<body bgcolor=yellow>
This is my first HTML Program
</body>
</html>
Output:
Program 2:
<html>
<head>
<title> STD 6 </title>
</head>
<body bgcolor=yellow>
<b>HTML stands for Hyper Text Markup Language.</b>
<u> HTTP stand Hyper Text Transfer Protocol </u>
<i> WWW stands World Wide web </i>
</body>
</html>
Output:
Program 3
<html>
<head>
<title> 6 E</title>
</head>
<body bgcolor=yellow>
<hr >
<b> HTML stands for Hyper Text Markup Language</b><br>
<u> WWW stands for World Wide Web </u><br>
<i> Internet stands for Interconnected Networks </i><br>
</body>
</html>
Output:
Program 4
<html>
<head>
<title> STD 6</title>
</head>
<body bgcolor=yellow>
<HR WIDTH=100%>
<b><i><u> ARPANET stand for Advanced Research Project Agency
Network</b></u></i><br>
<HR WIDTH=60%>
<b><i><u> Internet services started on 15th August 1995,
through a government owned agency </b></u></i><br>
<HR WIDTH=40%>
</body>
</html>
Output:
Program 5
<html>
<head>
<title> STD 6 </title>
</head>
<body bgcolor=red text=yellow>
<h1> COMPUTER </h1>
<h2> COMPUTER </h2>
<h3> COMPUTER </h3>
<h4> COMPUTER </h4>
<h5> COMPUTER </h5>
</body>
</html>
Output:
Program 6
<html>
<head>
<title>firstwebpage-STD 6</title>
</head>
<body bgcolor=yellow text=black>
<h1>heading 1</h1><hr color=brown width=20%>
<h2>heading 2</h2><hr color=red width=50%>
<h3>heading 3</h3><hr color=blue width=80%>
<h4>heading 4</h4><hr>
<h5>heading 5</h5><hr>
<h6>heading 6</h6><hr>
<b><u>Grade 6</u></b> <br>This is my
<u><b>first class</b></u> of html.
I learned how to create <br><i>html file</i>.
<br><center>23rd October, 2023</center>
<p>The block of text or a paragraph comes within this tag. It applies
same formatting and alignment to the entire paragraph. It is a container element.</p>
<h5>Your Name</h5>
</body>
</html>
Output