Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="description" content="python web page for kubernetes demo">
  6. <meta name="keywords" content="kubernetes,python,web">
  7. <meta name="author" content="Ruan Bekker">
  8.  
  9. <title>Python Page</title>
  10.  
  11. </head>
  12. <style>
  13. html, body {
  14. height: 100%;
  15. margin: 0;
  16. padding: 0 0;
  17. }
  18.  
  19. .container-fluid {
  20. height: 100%;
  21. display: table;
  22. width: 100%;
  23. padding-right: 0;
  24. padding-left: 0;
  25. }
  26.  
  27. .row-fluid {
  28. height: 100%;
  29. display: table-cell;
  30. vertical-align: middle;
  31. width: 100%;
  32. }
  33.  
  34. .centering {
  35. float: none;
  36. margin: 0 auto;
  37. }
  38. </style>
  39.  
  40. <body>
  41. <div class="container-fluid">
  42. <div class="row-fluid">
  43. <div class="offset3 span6 centering">
  44. <center>
  45. <img src="images/python.png" class="" height="300" width="300" />
  46. </center>
  47. </div>
  48. </div>
  49. </div>
  50. </body>
  51.  
  52. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement