Write a HTML program to print techstudy on the screen with every letter being a different heading size

Topics

Introduction

Write a HTML program to print techstudy on the screen with every letter being a different heading size

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>www.techstudy.org</title>
</head>
<body>
<h4>T</h4>
<h3>e</h3>
<h2>c</h2>
<h1>h</h1>
<h5>s</h5>
<h4>T</h4>
<h3>u</h3>
<h2>d</h2>
<h1>y</h1>
</body>
</html>
</html>

Result

Write a HTML program to print techstudy on the screen with every letter being a different heading size
Write a HTML program to print techstudy on the screen with every letter being a different heading size

Leave a Comment