Advertisement
pan7nikt

egzamin6_haslo.html

Sep 12th, 2022
684
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.20 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.     <title>Miernik jakości hasła</title>
  8.     <link rel="stylesheet" href="styl.css" type="text/css">
  9. </head>
  10. <body>
  11.     <div id="container">
  12.         <div id="banner">
  13.             <a href="index.html"><h1>Sprawdź swoje hasło</h1></a>
  14.         </div>
  15.         <div id="lewy">
  16.             <h2>Wybierz</h2>
  17.             <ol>
  18.                 <li><a href="haslo.html">Sprawdź hasło</a></li>
  19.                 <li><a href="zasady.html">Zasady tworzenia hasła</a></li>
  20.             </ol>
  21.         </div>
  22.         <div id="prawy">
  23.             <form>
  24.                 <p>Twoje hasło:</p>
  25.                 <input type="password" id="pwd" name="pwd">
  26.                 <input type="button" value="Sprawdź" onclick="sprawdz()"><br>
  27.                 <span id="wynik"></span>
  28.             </form>
  29.         </div>
  30.         <div id="stopka">
  31.             <h3>Miernik jakości hasła</h3>
  32.             <p>Stronę opracował: 12345678901</p>
  33.         </div>
  34.     </div>
  35.  
  36.     <script src="haslo.js"></script>
  37. </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement