Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.74 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  7. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  8. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
  9. </head>
  10.  
  11. <body>
  12. <div>
  13. <h1 text-align = center>Naslov na stranici</h1>
  14. <h2 text-align = center class = "small">Podnaslov</h2>
  15. <img src="cinqueterre.jpg" class="img-circle" alt="Cinque Terre" width="304" height="236">
  16. </div>
  17.  
  18. <div>
  19. <nav class="navbar navbar-inverse">
  20. <div class="container-fluid">
  21. <div class="navbar-header">
  22. <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
  23. <span class="icon-bar"></span>
  24. </button>
  25. </div>
  26. <div class="collapse navbar-collapse" id="myNavbar">
  27. <ul class="nav navbar-nav">
  28. <li class="active"><a href="#">Prva</a></li>
  29. <li><a href="#">Druga</a></li>
  30. <li><a href="#">Treća</a></li>
  31. <li><a href="#">Četvrta</a></li>
  32. </ul>
  33. </div>
  34. </div>
  35. </nav>
  36. </div>
  37.  
  38. <div>
  39. <h3>Hello world!</h3>
  40. <p>"Hello World" redirects here. For other uses, see Hello World.</p>
  41. <p>A "Hello, World!" program is a computer program that outputs or displays the message "Hello, World!". Being a very simple program in most programming languages, it is often used to illustrate the basic syntax of a programming language and is often the first program people write.</p>
  42. <p>A "Hello, World!" program is traditionally used to introduce novice programmers to a programming language. "Hello, world!" is also traditionally used in a sanity test to make sure that a computer language is correctly installed, and that the operator understands how to use it.</p>
  43. <p>While small test programs have existed since the development of programmable computers, the tradition of using the phrase "Hello, world!" as a test message was influenced by an example program in the seminal book The C Programming Language. The example program from that book prints "hello, world" (without capital letters or exclamation mark), and was inherited from a 1974 Bell Laboratories internal memorandum by Brian Kernighan, Programming in C: A Tutorial.</p>
  44. </div>
  45.  
  46. <div>
  47. <img src="cinqueterre.jpg" class="img-circle" alt="Cinque Terre" width="304" height="236">
  48. <img src="cinqueterre.jpg" class="img-rounded" alt="Cinque Terre" width="304" height="236">
  49. <img src="cinqueterre.jpg" class="img-thumbnail" alt="Cinque Terre" width="304" height="236">
  50. </div>
  51.  
  52. <div>
  53. <table class="table">
  54. <thead>
  55. <tr>
  56. <th>Ime</th>
  57. <th>Prezime</th>
  58. <th>Email</th>
  59. </tr>
  60. </thead>
  61. <tbody>
  62. <tr>
  63. <td>Hrvoje</td>
  64. <td>Horvat</td>
  65. <td>hhorvat@email.com</td>
  66. </tr>
  67. <tr>
  68. <td>Matija</td>
  69. <td>Matijević</td>
  70. <td>mmatijevic@email.com</td>
  71. </tr>
  72. <tr>
  73. <td>Ivica</td>
  74. <td>Ivić</td>
  75. <td>iivic@email.com</td>
  76. </tr>
  77. </tbody>
  78. </table>
  79. </div>
  80. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement