P tag font size in html
P tag font size in html : You can add css to add font size in paragraph.
P tag font size in html
Example
<!DOCTYPE html> <html> <head> <title>Title</title> <style type="text/css"> p{ font-size:11px; } </style> </head> <body> <p>This is paragraph 1.</p> <p>This is paragraph 2.</p> </body> </html> |
Output :
Advertisements