Advertisement
Guest User

Untitled

a guest
Dec 9th, 2019
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. p.pierwszy {
  2. color: blue;
  3. font-style: arial;
  4. font-size: 35;
  5. font-weight: bold; }
  6.  
  7. p.drugi {
  8. color: purple;
  9. font-style: Helvetica;
  10. font-size: 15;
  11. word-spacing: 25}
  12.  
  13. p.trzeci {
  14. color: green;
  15. font-style: Verdana;
  16. font-size: 20;
  17. letter-spacing: 9;}
  18.  
  19. p.czwarty {
  20. text-decoration: underline;
  21. color: orange;
  22. font-style: Avantgarde;
  23. font-size: 44 }
  24.  
  25. p.piaty {
  26. font-style: oblique;
  27. color: red;
  28. font-style: OCR A Std;
  29. font-size: 55;
  30. border-color: blue;
  31. border-style: double;
  32. }
  33.  
  34.  
  35. <html>
  36. <head> <link rel="stylesheet" href="zadaniedomowe.css"> <meta charset="UTF-8"> </head>
  37. <body>
  38.  
  39. <p class="pierwszy">To jest akapit, w którym tekst jest gruby </p>
  40. <br>
  41. <p class="drugi">To jest akapit, w którym jest odstep miedzy wyrazami</p>
  42. <br>
  43. <p class="trzeci">To jest akapit, w którym są odstepy miedzy literami</p>
  44. <br>
  45. <p class="czwarty">To jest akapit, w którym jest podkreslenie</p>
  46. <br>
  47. <p class="piaty">To jest akapit, w którym jest obramowka</p>
  48. <br>
  49. </body>
  50. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement