Advertisement
Guest User

Untitled

a guest
Jan 20th, 2020
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Završni test</title>
  4. </head>
  5. <body background="https://q-cf.bstatic.com/images/hotel/max1024x768/140/140829170.jpg">
  6. <h1 style="color:white">Obrada teksta</h1>
  7. <div id="kutija">
  8. <b>Bold - Podebljan tekst</b><br>
  9. <i>Italic - Iskošen tekst</i><br>
  10. <u>Underline - Podvučena linija</u><br>
  11. <font face="arial">Odabrani font (arial)</font><br>
  12. <font color="Red">Boja teksta</font><br>
  13. </div>
  14. <br><br>
  15. <img src="https://clipart-db.ru/file_content/rastr/planet-004.png" style="width:200px;height:200px;" alt="mesec">
  16. <br><br>
  17. <table id="tabela" bgcolor="black">
  18. <tr>
  19. <th>Tople boje</th>
  20. <th>Hladne boje</th>
  21. <th>Ostale boje</th>
  22. </tr>
  23. <tr>
  24. <td style="color:yellow;">Žuta</td>
  25. <td style="color:green;">Zelena</td>
  26. <td>Crna</td>
  27. </tr>
  28. <tr>
  29. <td style="color:red;">Crvena</td>
  30. <td style="color:blue;">Plava</td>
  31. <td>Bela</td>
  32. </tr>
  33. </table>
  34. </body>
  35. <style>
  36. #kutija{
  37. padding:10px;
  38. border-radius:15px;
  39. border: 3px dotted gold;
  40. width:300px;
  41. color:white;
  42. }
  43.  
  44. #tabela{
  45. color:white;
  46. border: 2px solid white;
  47. padding:20px;
  48. width: 400;
  49. border: 3px solid gray;
  50. font-family:arial;
  51. text-align:center;
  52. }
  53.  
  54. table tr td{
  55. font-weight: bold;
  56. text-decoration:underline;
  57. }
  58. </style>
  59. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement