Write a program in HTML using Formatting Text.

Write a program in HTML using  Formatting Text.

<html>

<head>

          <title>Text formatting</title>

</head>

<body>

          <h1 align="center">Text Formatting </h1>

          <b>The text appear Bold</b></br>

          <i>The text appear Italic</i></br>

          <u>The text appear Underline</u></br>

          <tt>The text appear small type weiten float</tt></br>

          <small>The text appear Small</small></br>

          <strike>The text appear strike</strike></br>

          H<sub>2</sub>O</br>

          a<sup>2</sup></br>

          <big>The text appear Big</big></br>

 

</body>

</html>


Comments