Advertisement
Guest User

ANDIIIIIIIIIIIII

a guest
Feb 8th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. <html>
  2. <head>
  3. <link rel="stylesheet"
  4. type="text/css" href="stil1.css" />
  5. </head>
  6.  
  7. <body>
  8.  
  9. <h1>Acest titlu are 35 pt</h1>
  10. <h2>Acest titlu este verde</h2>
  11. <p>Acest paragraf are marginea stanga de 40 pixeli</p>
  12. <style>
  13. body
  14. {
  15. background-color:yellow;
  16. }
  17. h1
  18. {
  19. font-size:35pt;
  20. }
  21. h2
  22. {
  23. color:green;
  24. }
  25. p
  26. {
  27. </style>
  28. <html>
  29. <head>
  30. <style type="text/css">
  31. #par1
  32. {
  33. text-align:left;
  34. color:red
  35. }
  36. </style>
  37. </head>
  38. <body>
  39. <p id="par1">Buna ziua!</p>
  40. <p>Acest paragraf nu este afectat de declaratia de stil.</p>
  41. </body>
  42. </html>
  43.  
  44. <html>
  45. <head>
  46. <style type="text/css">
  47. .center
  48. {
  49. text-align:center;
  50. }
  51. </style>
  52. </head>
  53. <body>
  54. <h1 class="center">Acest titlu este aliniat la centru cu CSS</h1>
  55. <p class="center">Acest paragraf este de asemenea aliniat la centru cu CSS.</p>
  56. </body>
  57. </html>
  58.  
  59. </body>
  60. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement