zxz 29.09.2020 09:18
Predmet:Color piker

Lak nacin za odabir boja.
PreuzmiIzvorni kôd (HTML):
  1. <!DOCTYPE html>
  2.     <head>
  3.         <title>boje</title>
  4.     </head>
  5.     <body>
  6.         <h1>Odabir noja</h1>
  7.         <b>Input tekst zu boju: </b>
  8.         <input type="color">
  9.         </div>
  10.     </body>
  11. </html>
  12. </BODY>
  13. </HTML>

zxz 29.09.2020 09:25
Predmet:Automatsko osvjezenje stranice

Automatsko osvježavanje dokumenta nakon spomenutog vremena.
PreuzmiIzvorni kôd (HTML):
  1. <!DOCTYPE html>
  2.     <head>
  3.         <title>Refresh stranice</title>
  4.         <meta http-equiv="refresh" content="6">
  5.         <style>
  6.             .conatiner {
  7.                 text-align: center;
  8.             }
  9.  
  10.             h1 {
  11.                 color: green;
  12.             }
  13.         </style>
  14.     </head>
  15.     <body>
  16.         <div class="conatiner">
  17.         <h1>Refresh</h1>
  18.         <b>Refres nakon 6 sec</b>
  19.         </div>
  20.     </body>
  21. </html>

zxz 29.09.2020 09:54
Predmet:Prepoznavanje glasa

Napomena: Ovo će raditi samo na mobilnim uređajima.
PreuzmiIzvorni kôd (HTML):
  1. <!DOCTYPE html>
  2.     <head>
  3.         <title>Prepoznavanje glasa</title>
  4.         <style>
  5.             .conatiner {
  6.                 text-align: center;
  7.             }
  8.  
  9.             h1 {
  10.                 color: green;
  11.             }
  12.         </style>
  13.     </head>
  14.     <body>
  15.         <div class="conatiner">
  16.         <b>Reci nesto</b>
  17.         <input type="text" x-webkit-speech>
  18.         </div>
  19.     </body>
  20. </html>

zxz 18.10.2020 13:06
Predmet:figure

Moze se koristiti za prikaz fotografije.
Imamo jos i <figcaption> za prikaz teksta.
PreuzmiIzvorni kôd (HTML):
  1. <META NAME="generator" CONTENT="toniarts easyhtml v.2.4">
  2. <TITLE>Naslov</TITLE>
  3. </HEAD>
  4.  <figure>
  5.   <img src="https://icentar.ba/icentar/download/orasisak.JPG" alt="Nema slike" style="width:30%">
  6.   <figcaption></br>Omladinska radna akcija</figcaption>
  7. </figure
  8. </BODY>
  9. </HTML>

zxz 21.07.2021 23:58
Predmet:fiksno podnozje

PreuzmiIzvorni kôd (HTML):
  1. <!DOCTYPE html>
  2. .futer {
  3.    position: fixed;
  4.    left: 0;
  5.    bottom: 0;
  6.    width: 100%;
  7.    background-color: blue;
  8.    color: white;
  9.    text-align: center;
  10. }
  11. </head>
  12.  
  13. <h2>Primjer fiknog podnozja</h2>
  14. <p>Podnozje ce se uvije na
  15. aziti na dnu stranice</p>
  16.  
  17. <div class="futer">
  18. <p>futer</p>
  19. </div>
  20. </body>
  21. </html>

zxz 13.10.2021 23:44
Predmet:Kako izraditi isprekidanu liniju:

Kako izraditi isprekidanu liniju:
PreuzmiIzvorni kôd (HTML):
  1. <META NAME="generator" CONTENT="toniarts easyhtml v.2.4">
  2. <TITLE>Title of your page</TITLE>
  3. </HEAD>
  4. <hr style="border:dashed #D4D0C8; border-width:1px 0 0; height:0;">
  5. </BODY>
  6. </HTML>