Advertisement
rodolpheg

Untitled

Feb 2nd, 2021
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Ma page</title>
  5. <meta charset="UTF-8">
  6.  
  7. <style>
  8. body {
  9. background-color: rgb(179,187,191);
  10. }
  11.  
  12. p {
  13. font-family: Helvetica;
  14. font-size: 13pt;
  15. color: rgb(78,66,66);
  16. }
  17.  
  18. h1 {
  19. font-family: Garamond;
  20. font-size: 33pt;
  21. color: rgb(211,45,34);
  22. text-align:center;
  23. }
  24.  
  25. h2 {
  26. font-family: Arial;
  27. font-size: 23pt;
  28. color: rgb(130,69,139);
  29. text-align:right;
  30. }
  31.  
  32. h3 {
  33. font-family: monospace;
  34. font-size: 17pt;
  35. color: rgb(13,69,139);
  36. text-align:center;
  37. }
  38.  
  39. #liste {color: yellow; font-style: italic;}
  40.  
  41. .textgras {font-weight: bold;}
  42.  
  43. .bleu {color: blue;}
  44. </style>
  45. </head>
  46. <body>
  47. <ul id=liste><li>Éléments</li><li>d’une</li><li>liste</li></ul>
  48. <p class="textgras">Du texte </p>
  49. <p class="bleu textgras">Encore du texte</p>
  50. <a class="bleu" href="https://www.google.com">Google</a>
  51. <ul class="textgras" id="liste"><li>une</li><li>autre</li><li>liste</li></ul>
  52. </body>
  53. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement