Advertisement
bdf74

Font

Mar 17th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.26 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4. p {
  5.   font-family: "Verdana";
  6. }
  7. .testoinarial {
  8.   font-family: "Arial";
  9. }
  10. </style>
  11. </head>
  12. <body>
  13. <p>
  14. Ho messo i p in Verdana.
  15. </p>
  16. <p class="testoinarial">
  17. Questo ha un'altra class, quindi è in Arial.
  18. </p>
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement