Repciu

Untitled

Oct 27th, 2023
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Logowanie do Panelu ucznia</title>
  6. <!-- Dodanie tej ładnej ikonki co pojawia się w zakładkach przeglądarki obok tytułu strony -->
  7. <link rel="icon" type="image/x-icon" href="https://panel.giganciprogramowania.edu.pl/app/favicon.ico">
  8.  
  9. <!-- dodanie czcionki spoza zestawu domyślnych -->
  10. <link href='https://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
  11.  
  12. <!-- Dodanie osobnego pliku tylko dla stylów -->
  13. <link rel="stylesheet" type="text/css" href="style.css">
  14. <!-- Style też można opisywać w pliku html w specjalnym tagu style -->
  15. <style>
  16. #login-button {
  17. border: 0px;
  18. margin-top: 15px;
  19. padding: 15px 25px 15px 25px;
  20. font-weight: bold;
  21. background-color: rgb(237, 127, 44);
  22. color: white;
  23. border-radius: 20px;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <!-- pudełka na rózne elementy -->
  29. <div id="left-box">
  30. <!-- Uzupełniamy 2 obrazki -->
  31. <img id="logo" src="logo.png" alt="Logo Gigantów programowania"></img>
  32. <!-- style tzw inline-->
  33. <img id="uczniowie" src="uczniowie.png" alt="Grafika przedstawiająca kilku siedzących razem uczniów" style="height: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);"></img>
  34. </div>
  35.  
  36. <!-- pudełka na rózne elementy -->
  37. <div id="right-box">
  38. <!-- style tzw. inline -->
  39. <form style="width:400px; padding: 15%" >
  40. <h1 >Zaloguj się do serwisu</h1>
  41. <!-- style które używamy kilka razy "class"-->
  42. <input class="input" type="text" placeholder="Twój adres email">
  43. <input class="input" type="text" placeholder="Hasło">
  44. <input id="login-button" type="sumbit" value="Zaloguj się">
  45. <!-- style które są TYLKO w jednym miejscu wpisujemy jako id="nazwa" -->
  46. </form>
  47. </div>
  48. </body>
  49. </html>
Advertisement
Add Comment
Please, Sign In to add comment