+ 3
Is there any other
<!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <p class="normal">This paragraph is normal.</p> <p class="italic">This paragraph is italic.</p> <p class="oblique">This paragraph is oblique.</p> </body> </html>
1 Respuesta
+ 5
No ,there is not any other <p>tag with different attributes
okay if you want to change attributes using class
use css
p.italic {
font-style: italic;
}