Advertisement
Guest User

Untitled

a guest
Apr 1st, 2020
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.62 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pl-PL">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Szkoła ponadgimnazjalna</title>
  7. <link rel="stylesheet" href="style.css">
  8. <style>
  9. body {
  10. font-family: sans-serif;
  11. background-color: #676767;
  12. width: 1280px;
  13. margin: auto;
  14. }
  15. .baner {
  16. text-align: center;
  17. }
  18. .panele {
  19. float: left;
  20. }
  21. .lewy {
  22. width: 30%;
  23. text-align: right;
  24. }
  25. ul {
  26. text-align: right;
  27. list-style-position: inside;
  28. }
  29. .prawy {
  30. height: 700px;
  31. overflow: scroll;
  32. }
  33. table {
  34. background-color: #999999;
  35. }
  36. td {
  37. width: 405px;
  38. border: 3px solid #555555;
  39. }
  40. tr > td {
  41. height: 250px;
  42. }
  43. #thead > td {
  44. height: 25px;
  45. }
  46. .stopka {
  47. clear: both;
  48. text-align: center;
  49. }
  50. span {
  51. color: white;
  52. }
  53. a {
  54. color: white;
  55. }
  56.  
  57.  
  58. </style>
  59.  
  60. </head>
  61. <body>
  62. <section class="baner">
  63. <h1>Projekt strony internetowej szkoły ponadgimnazjalnej</h1>
  64. </section>
  65. <section class="panele lewy">
  66. <h3>Do pobrania</h3>
  67. <ul>
  68. <li><a href="baza/zapytania.txt">zapytania SQL</a></li>
  69. <li><a href="baza/szkola_nowa.sql">baza danych</a></li>
  70. </ul>
  71. <hr style="width: 100%;">
  72. <h3>Wyznaczanie najwyższej średniej</h3>
  73. <ul>
  74. <li> <span>Polak</span>
  75. <input type="text">
  76. </li>
  77. <li><span>Nowak</span>
  78. <input type="text">
  79. </li>
  80. <li><span>Rysik</span>
  81. <input type="text">
  82. </li>
  83. </ul>
  84. <br>
  85. <input type="button" value="Wyznacz">
  86. <br>
  87. <h3>Najwyższa średnia</h3>
  88. </section>
  89. <section class="panele prawy">
  90. <table>
  91. <tr id="thead">
  92. <td>Treść zapytania</td>
  93. <td>Zrzut ekranu</td>
  94. </tr>
  95. <tr>
  96. <td>Treść zapytania</td>
  97. <td><img src="1.jpg" alt="1.jpg"></td>
  98. </tr>
  99. <tr>
  100. <td>Treść zapytania</td>
  101. <td><img src="2.jpg" alt="2.jpg"></td>
  102. </tr>
  103. <tr>
  104. <td>Treść zapytania</td>
  105. <td><img src="3.jpg" alt="3.jpg"></td>
  106. </tr>
  107. <tr>
  108. <td>Treść zapytania</td>
  109. <td><img src="4.jpg" alt="4.jpg"></td>
  110. </tr>
  111. </table>
  112. </section>
  113. <section class="stopka">
  114. <h4>stronę wykonał: Krystian Wawruch</h4>
  115. </section>
  116. </body>
  117. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement