Advertisement
Guest User

Untitled

a guest
Oct 11th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.92 KB | None | 0 0
  1. <!DOCTYPE html><!-- komentar-->
  2. <html>
  3. <head><!-- vanjski fileove-->
  4. <meta charset="utf-8">
  5. <title>Vježba 1 - pzi</title>
  6. </head>
  7. <body><!-- sadrzaj stranice-->
  8. <h1>Programiranje za Internet - Uvod u HTML</h1>
  9.  
  10. <p>
  11. Ja sam <strong>Petar</strong> i ovo je moja prva vježba iz <em>PZI</em>.
  12. </p>
  13. <p>
  14. Više možete saznati u mom <a href="#cv">životopisu</a>.
  15.  
  16. </p>
  17. <img src="https://www.fesb.unist.hr/Assets/Images/Shared/fesb-logo.png" alt=" FESB logo">
  18. <img src="assests/images/fesb-logo.png" alt="FESB logo">
  19.  
  20. <p>
  21. "At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat."
  22. </p>
  23.  
  24. <hr>
  25.  
  26. <h2 id="cv">Životopis</h2>
  27.  
  28. <ul>
  29.  
  30. <li>Rođen 1996. godine.</li>
  31. <li>Studiram na <a href="https://www.fesb.unist.hr/" target="_blank">FESB-u</a></li>
  32.  
  33. </ul>
  34.  
  35.  
  36. <hr>
  37.  
  38. <h3>Predmeti</h3>
  39.  
  40.  
  41. <table>
  42. <thead>
  43. <tr>
  44. <th>Predmet</th>
  45. <th>Profesor</th>
  46. <th>Semestar</th>
  47. </tr>
  48.  
  49. </thead>
  50.  
  51.  
  52. <tbody>
  53. <tr>
  54. <td>Programiranje za Internet</td>
  55. <td>Maja Štula</td>
  56. <td>5</td>
  57. </tr>
  58. <tr>
  59. <td>Programsko inženjerstvo</td>
  60. <td>Linda Vicković</td>
  61. <td>5</td>
  62. </tr>
  63. </tbody>
  64.  
  65.  
  66. <tfoot>
  67. <tr>
  68. <td colspan="3">@FESB</td>
  69. </tr>
  70.  
  71.  
  72. </tfoot>
  73.  
  74. </table>
  75.  
  76. <hr>
  77.  
  78. <h2>HTML Login</h2>
  79.  
  80. <form>
  81. Username: <input type="text" id="username-field"><br><br>
  82. Password: <input type="passowrd" id="password-field"><br><br>
  83. <input type="submit" value="login">
  84. <input type="date">
  85.  
  86. </form>
  87.  
  88.  
  89. <a href="http://www.fesb.hr" target="_blank">
  90. <img src="assests/images/fesb-logo.png" alt="fesb logo">
  91. </body>
  92. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement