Advertisement
Guest User

Untitled

a guest
Jun 5th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4. body{
  5. font-family: 'Shojumaru', cursive;
  6. text-align: center;
  7. color: #ffffff;
  8. background-image: url("https://www.toptal.com/designers/subtlepatterns/patterns/binding_dark.png");<!--from subtle patterns-->
  9. }
  10. .holder {
  11. width: auto;
  12. display: inline-block;
  13. }
  14.  
  15. .holder img {
  16. width: 30%;
  17. height: auto;
  18. }
  19. <style/>
  20. <link href="https://fonts.googleapis.com/css?family=Shojumaru" rel="stylesheet">
  21.  
  22. <?php
  23. $servername = "localhost";
  24. $username = "krzysztak";
  25. $password = "IOrKKaphwGPrN1Sb";
  26.  
  27. // Create connection
  28. $conn = new mysqli($servername, $username, $password);
  29.  
  30. // Check connection
  31. if ($conn->connect_error) {
  32. echo "Connection failed";
  33. }else{
  34. echo "Connected successfully";
  35. }
  36. ?>
  37.  
  38. </head>
  39.  
  40. <body>
  41.  
  42. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement