write an HTML program to display the title "computer System" in different heading styles
Answers
Answered by
1
————————————————————
<html>
<head>
<body>
<h1> Computer System </h1>
<h2> Computer System </h2>
<h3> Computer System </h3>
<h4> Computer System </h4>
<h5> Computer System</h5>
<h6> Computer System </h6>
</body>
</head>
</html>
————————————————————
hope this helps you! Good luck! psst..mark me as brainliest if you want to, lol
Answered by
2
Answer:
<html>
<head>
<title>
Computer System
</title>
</head>
<body>
<p><h1>Computer System</h1></p>
<p><h2>Computer System</h2></p>
<p><h3>Computer System</h3></p>
<p><h4>Computer System</h4></p>
<p><h5>Computer System</h5></p>
<p><h6>Computer System</h6></p>
</body>
</html>
Similar questions