Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.21 KB | None | 0 0
  1. <?php
  2. $servername = "localhost";
  3. $username = "username";
  4. $password = "password";
  5.  
  6. // Create connection
  7. $conn = new mysqli($servername, $username, $password);
  8.  
  9. // Check connection
  10. if ($conn->connect_error) {
  11. die("Connection failed: " . $conn->connect_error);
  12. }
  13. echo "Connected successfully";
  14. ?>
  15. <!DOCTYPE html>
  16. <html>
  17. <title></title>
  18. <meta charset="utf-8">
  19. <link rel="stylesheet" type="text/css" href="css.css">
  20. <script type="text/javascript" src="js.js" ></script>
  21. </head>
  22. <body>
  23. <div class="calosc">
  24. <div class="naglowek">
  25. <h1><marquee behavior="scroll">To jest mój nagłówek</marquee></h1>
  26. </div>
  27. <div class="menu">
  28. <ul>
  29. <li><a href="1.html">Strona z przyciskiem</a></li>
  30. <li><a href="2.html">Strona z muzyką </a></li>
  31. <li><a href="3.html">Magia na przycisku</a></li>
  32. </ul>
  33. </div>
  34. <div class="srodek">
  35. <p> Tutaj jest obrazek tygrysa </p>
  36. <img class="obrazek" src="tygrys.jpg" alt="ups zabili go">
  37. <script type="text/javascript">
  38. document.write("Nazwa: "+navigator.appName+"<BR>")
  39. document.write("Wersja: "+navigator.appVersion+"<BR>")
  40. document.write("Język: "+navigator.language+"<BR>")
  41. </script>
  42. </div>
  43. <div class="odnosniki">
  44. <a href="http://www.facebook.com"> <img src="fb.png" alt="Coś poszło nie tak " > </a>
  45. <a href="http://www.twitter.com"> <img src="tt.png" alt="Coś poszło nie tak " > </a>
  46. <a href="http://www.vk.com"> <img src="vk.png" alt="Coś poszło nie tak " > </a>
  47. <a href="http://www.instagram.com"> <img src="inst.png" alt="Coś poszło nie tak " ></a>
  48. <a href="http://www.twitch.com"> <img src="twt.png" alt="Coś poszło nie tak" > </a>
  49. <a href="http://www.snapchat.com"> <img src="snap.png" alt="Coś poszło nie tak" > </a>
  50. <a href="http://www.tumblr.com"> <img src="tumb.png" alt="Coś poszło nie tak" > </a>
  51. <a href="http://www.gmail.com"> <img src="gmg.png" alt="Coś poszło nie tak" > </a>
  52. </div>
  53. <div class="stopka">
  54. SAM TO ZROBIŁEM
  55. <script type="text/javascript">
  56. document.write('Ostatnia aktualizacja strony: ' + document.lastModified);
  57. </script>
  58. </div>
  59. </div>
  60.  
  61. </body>
  62. </html>
  63. <!-- class to kropka -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement