Html small tag
Html small tag: It makes the selected texts smaller than the original size.
Syntax of Html small tag
<small>text.</small>
Html small tag
Example
<!DOCTYPE html> <html> <head> <title>Title</title> </head> <body> <p>Without Small Tag : This is paragraph without small texts.</p> <p>Small Tag : This is paragraph with <small>small</small> texts.</p> </body> </html> |
Output :
Advertisements