write a program in HTML to print 5 student name by using Bullet form
Answers
Answered by
2
Answer:
<HTML>
<HEAD>
<TITLE> Names</TITLE>
</HEAD>
<BODY>
<H1>5 Students Names</H1>
<B>
<H2>Apurva</H2>
<H3>Kanak</H3>
<H4>Anuj</H4>
<H5>Keshav</H5>
<H6>Priya</H6>
</B>
</BODY>
</HTML >
Hope it helps you..
Answered by
1
<html>
<title>Brainly Answer</title>
<head>Name of five students</head>
<body>
<ul>
<li>Student 1</li>
<li>Student 2</li>
<li>Student 3</li>
<li>Student 4</li>
<li>Student 5</li>
</ul>
</body>
</html>
Please replace, bolded part with names of your own...
Similar questions