Advertisement
Pinkel

html1

Mar 10th, 2019
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.49 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <link rel="stylesheet" href="style.css">
  8. <title>Document</title>
  9. </head>
  10.  
  11. <body onload="start()">
  12. <div id="app-main">
  13. <header class="app-header">
  14. <h1>header</h1>
  15. </header>
  16.  
  17. <section class="app-container">
  18. <div class="app-container__box">
  19. <ul class="app-container__links">
  20. <li class="app-container__links__item"><a href="#">link</a></li>
  21. <li class="app-container__links__item"><a href="#">ax2+ bx + c = 0</a></li>
  22. <li class="app-container__links__item"><a href="#">link3</a></li>
  23. </ul>
  24. </div>
  25.  
  26. <embed src="center.html" width="100%" min-height="900px;" >
  27.  
  28. <div class="app-container__box app-container__box--news">
  29. <div class="app-container__box__title">
  30. <h2>news</h2>
  31. </div>
  32. <div class="app-container__box__context">
  33. <p>Cześć <span id="name-span"></span></p>
  34. <div id="day"></div>
  35. <div id="timer"></div>
  36. <p>Przedmiot: <span id="subject-span"></span></p>
  37. <p>Urodziny za: <span id="birthday-span"></span></p>
  38.  
  39.  
  40.  
  41. </div>
  42. </div>
  43. </section>
  44.  
  45. <footer class="app-footer">
  46. <span>&copy; Copyright 2019 </span>
  47. </footer>
  48. </div>
  49.  
  50. <script src="script.js"></script>
  51. </body>
  52. </html>
  53.  
  54.  
  55.  
  56.  
  57. <!DOCTYPE html>
  58. <html lang="en">
  59. <head>
  60. <meta charset="UTF-8">
  61. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  62. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  63. <link rel="stylesheet" href="style.css">
  64. <title>content</title>
  65. </head>
  66. <body style="overflow: hidden">
  67.  
  68. <div class="app-container__content">
  69. <h1>Podaj dane:</h1>
  70.  
  71. <input type="text" id="first" placeholder="A" style="float:left; width:30%">
  72. <input type="text" id="second" placeholder="B" style="float:left; width:30%">
  73. <input type="text" id="third" placeholder="C" style="float:left; width:30%" >
  74. <input type="submit" value="OBLICZ" onclick="matma()" style="width:30%; ">
  75.  
  76. <div id="wyniki">
  77.  
  78.  
  79.  
  80. </div>
  81.  
  82. </div>
  83.  
  84. <script src="script.js"></script>
  85. </body>
  86. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement