apiszcz

Selektory

Aug 21st, 2025
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.21 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5.   <meta charset="utf-8">
  6.   <meta name="viewport" content="width=device-width">
  7.   <link href="style.css" rel="stylesheet" type="text/css" />
  8. </head>
  9.  
  10. <body>
  11.   <div id="listy">
  12.     <ol>
  13.       <li> Piotr Kowalski </li>
  14.       <li> Małgorzata Zdun </li>
  15.       <li> Sebastian Pietrykowski </li>
  16.     </ol>
  17.     <hr>
  18.     <ul>
  19.       <li> CV </li>
  20.       <li> List motywacyjny </li>
  21.       <li> Załączniki:
  22.         <ol>
  23.             <li> Certyfikaty </li>
  24.             <li> Świadectwo pracy </li>
  25.             <li> Dyplom ukończenia studiów </li>
  26.         </ol>
  27.       </li>
  28.     </ul>
  29.     <hr>
  30.   </div>
  31.   <div id="formularze">
  32.     <form>
  33.       <fieldset>
  34.         <legend>Osoba</legend>
  35.         <label for="imie">Imie: </label>
  36.         <input type="text" id="imie">
  37.         <label for="nazwisko">Nazwisko: </label>
  38.         <input type="text" id="nazwisko">
  39.       </fieldset>
  40.       <label for="data-ur">Data urodzenia:</label>
  41.       <input type="date" id="data-ur">
  42.       <button type="reset">Resetuj</button>
  43.       <button type="submit">Wyślij</button>
  44.     </form>
  45.     <hr>
  46.     <hr>
  47.     <h1>Aplikuj już dziś</h1>
  48.     <hr>
  49.   </div>
  50.   <script src="script.js"></script>
  51. </body>
  52.  
  53. </html>
Advertisement
Add Comment
Please, Sign In to add comment