Advertisement
limun11

1. Osnove HTML (1.2 zadatak)

Apr 8th, 2019
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 4.31 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5.     <meta charset="UTF-8">
  6.     <title>Sedmica 1 Osnove HTML-a - Zadatak 1.2 Radni zadatak </title>
  7.  
  8. </head>
  9.  
  10. <body>
  11.     <h1>Web razvoj i dizjan - Sedmica 1</h1>
  12.  
  13.     <h2 id="Uvod">Uvod</h2>
  14.  
  15.     <br> Novi red
  16.  
  17.     <p align="right">Desno centriranje. Ispod je slika. <br/> - lokacija slike u istom folderu kao i dokument <br />
  18.         <img src="slika1.png" border="1px" width="300px" height="300px" alt="Nema slike"></p>
  19.  
  20.     <p>Lorem ipsum dolor sit amet, <i>consectetur adipiscing elit</i>. Sed bibendum ante eget ornare mattis.
  21.     </p>
  22.  
  23.     <p>A new paragraph</p>
  24.     <p align="center"> This is a centered paragraph, and</p>
  25.     <p align="right">this is right-aligned paragraph</p>
  26.  
  27.     <p>You can <b>make text bold, </b>and <i>put text in italics</i>. Nobody can stop you.
  28.     </p>
  29.  
  30.     <h2 id="Unordered list">Unordered list</h2>
  31.     <p>Here's an unordered list: </p>
  32.     <ul>
  33.         <li>Apples</li>
  34.         <li>Bananas</li>
  35.         <li>Cherries</li>
  36.     </ul>
  37.  
  38.     <h2 id="Ordered list">Ordered list</h2>
  39.     <ol>
  40.         <li>Apples</li>
  41.         <li>Bananas</li>
  42.         <li>Cherries</li>
  43.     </ol>
  44.  
  45.     <h2 id="Html tabela">Html tabela</h2>
  46.     <p>U nastavku slijedi primjer html tabele</p>
  47.     <table border="1px">
  48.         <thead>
  49.             <tr>
  50.                 <th>RB</th>
  51.                 <th>Predmet</th>
  52.                 <th>Ocjena</th>
  53.                 <th>Komentar</th>
  54.             </tr>
  55.         </thead>
  56.         <tbody>
  57.             <tr>
  58.                 <td>1</td>
  59.                 <td>Programiranje I</td>
  60.                 <td>9</td>
  61.                 <td>Težak ispit :)</td>
  62.             </tr>
  63.             <tr>
  64.                 <td>2</td>
  65.                 <td>Uvod u marketing</td>
  66.                 <td>9</td>
  67.                 <td>Težak ispit :)</td>
  68.             </tr>
  69.         </tbody>
  70.     </table>
  71.  
  72.     <h2 id="Korisni linkovi">Korisni linkovi</h2>
  73.     <ul>
  74.         <li><a href="https://medium.com/@TechMagic/reactjs-vs-angular5-vs-vue-js-what-to-choose-in-2018-b91e028fa91d">
  75.                 https://medium.com/@TechMagic/reactjs-vs-angular5-vs-vue-js-what-to-choose-in-2018-b91e028fa91d
  76.             </a></li>
  77.         <li><a href="https://www.codeinwp.com/blog/angular-vs-vue-vs-react/">https://www.codeinwp.com/blog/angular-vs-vue-vs-react/
  78.             </a></li>
  79.     </ul>
  80.  
  81.     <iframe width="560" height="315" src="https://www.youtube.com/embed/b0FCh1yqAcY" frameborder="0"
  82.        allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen>
  83.     </iframe>
  84.  
  85.     <h2 id="Tutorijali">Tutorijali</h2>
  86.     <table border="0px">
  87.         <tbody>
  88.             <tr>
  89.                 <td align="center">
  90.                     <a href="https://www.w3schools.com/html/default.asp">
  91.                         <img src="html.png" width="100px" height="100px"></a>
  92.                     <br /> HTML
  93.                 </td>
  94.                 <td align="center">
  95.                     <a href="https://www.w3schools.com/css/default.asp">
  96.                         <img src="css.png" width="100px" height="100px"></a>
  97.                     <br /> CSS
  98.                 </td>
  99.                 <td align="center">
  100.                     <a href="https://www.w3schools.com/js/default.asp">
  101.                         <img src="js.png" width="100px" height="100px"></a>
  102.                     <br />Javascript
  103.                 </td>
  104.                 <td align="center">
  105.                     <a href="https://www.w3schools.com/jquery/">
  106.                         <img src="jquery.png" width="100px" height="100px"></a>
  107.                     <br />jQuery
  108.                 </td>
  109.                 <td align="center">
  110.                     <a href="https://reactjs.org/tutorial/tutorial.html">
  111.                         <img src="reactjs.png" width="100px" height="100px"></a>
  112.                     <br />ReactJS
  113.                 </td>
  114.  
  115.             </tr>
  116.         </tbody>
  117.     </table>
  118.  
  119.     <h2>Sadržaj</h2>
  120.     <ol>
  121.         <li> <a href="#Uvod">Uvod</a></li>
  122.         <li><a href="#Unordered list">Unordered list</a></li>
  123.         <li><a href="#Ordered list">Ordered list</a></li>
  124.         <li><a href="#Html tabela">Html tabela</a></li>
  125.         <li><a href="#Korisni linkovi">Korisni linkovi</a></li>
  126.         <li><a href="#Tutorijali">Tutorijali</a></li>
  127.     </ol>
  128. </body>
  129.  
  130. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement