Home
HTML
HTML Text Formatting
Example 6: HTML Text Formatting
Run ❯❯
<!DOCTYPE html> <html> <head> <title>small Tag Example</title> </head> <body> <!--The Normal Text--> <p>Welcome to Result University.</p> <!--The Text in Small--> <p><small>Welcome to Result University.</small></p> </body> </html>