No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

home.html 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <html>
  2. <head>
  3. <style>
  4. .button {
  5. background-color: #000000; /* Green */
  6. border: none;
  7. color: white;
  8. padding: 15px 32px;
  9. text-align: center;
  10. text-decoration: none;
  11. display: inline-block;
  12. margin: 4px 2px;
  13. cursor: pointer;
  14. }
  15. .button1 {font-size: 10px;}
  16. .button2 {font-size: 12px;}
  17. .button3 {font-size: 16px;}
  18. .button4 {font-size: 50px;}
  19. .button5 {font-size: 24px;border-radius: 12px;}
  20. body {
  21. width: 100%;
  22. height:100%;
  23. font-family: 'Helvetica';
  24. background-color:#000000;
  25. color: #fff;
  26. font-size: 24px;
  27. text-align:center;
  28. letter-spacing:1.4px;
  29. }
  30. .dropbtn {
  31. background-color: #04AA6D;
  32. color: white;
  33. padding: 16px;
  34. font-size: 16px;
  35. border: none;
  36. }
  37. .dropdown {
  38. position: relative;
  39. display: inline-block;
  40. }
  41. .dropdown-content {
  42. display: none;
  43. position: absolute;
  44. background-color: #f1f1f1;
  45. min-width: 160px;
  46. box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  47. z-index: 1;
  48. }
  49. .dropdown-content a {
  50. color: black;
  51. padding: 12px 16px;
  52. text-decoration: none;
  53. display: block;
  54. }
  55. .dropdown-content a:hover {background-color: #ddd;}
  56. .dropdown:hover .dropdown-content {display: block;}
  57. .dropdown:hover .dropbtn {background-color: #3e8e41;}
  58. </style>
  59. </head>
  60. <body>
  61. <div style="background-image: url('https://lh3.googleusercontent.com/p/AF1QipONWF8G50u9Bu-dklcj3kzesofOn8Z0q0LdHeU1=w1080-h608-p-no-v0');
  62. /* Full height */
  63. height: 100%;
  64. / Center and scale the image nicely /
  65. background-position: center;
  66. background-repeat: no-repeat;
  67. background-size: cover;">
  68. <br>
  69. <br>
  70. <br>
  71. <h2 class="button button5">Bizgaze Limited</h2><br>
  72. <br>
  73. <div class="dropdown">
  74. <button class="button button5" >Parser</button>
  75. <div class="dropdown-content">
  76. <a href="/resume"> RESUME </a>
  77. <a href="/invoice"> INVOICE </a>
  78. </div>
  79. </div>
  80. </body>
  81. </html>