Advertisement
ruhul0

Untitled

Dec 14th, 2018
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.63 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <body style="background-color:black;">
  5. <style>
  6. .button {
  7.   background-color: #4CAF50; /* Green */
  8.   border: none;
  9.   color: white;
  10.   padding: 16px 32px;
  11.   text-align: center;
  12.   text-decoration: none;
  13.   display: inline-block;
  14.   font-size: 16px;
  15.   margin: 4px 2px;
  16.   -webkit-transition-duration: 0.4s; /* Safari */
  17.   transition-duration: 0.4s;
  18.   cursor: pointer;
  19. }
  20.  
  21. .button1 {
  22.   background-color: white;
  23.   color: black;
  24.   border: 2px solid #4CAF50;
  25. }
  26.  
  27.  
  28.  
  29. .button2 {
  30.   background-color: white;
  31.   color: black;
  32.   border: 2px solid #008CBA;
  33. }
  34.  
  35. .button2:hover {
  36.   background-color: #008CBA;
  37.   color: white;
  38. }
  39.  
  40. </style>
  41.  
  42. </html>
  43.  
  44. <br><br><br><br><center>
  45.  
  46. <form>
  47.     <button class="button button2"type="button" onclick="window.location.href='PAdmission.html'"> patient information </button><br><br>
  48. </form>
  49. <form>
  50. <button class="button button2"type="button" onclick="window.location.href='DoctorsInformation.html'"> doctors information </button><br><br>
  51. </form>
  52. <form>
  53. <button class="button button2"type="button"  onclick="window.location.href='MedicalAdvise.html'"> medical advise </button><br><br>
  54. </form>
  55. <form>
  56. <button class="button button2"type="button" onclick="window.location.href='Medicine Entry.html'"> medicine entry </button><br><br>
  57. </form>
  58. <form>
  59. <button class="button button2"type="button" onclick="window.location.href='WardInformation.html'"> ward information </button><br><br>
  60. </form>
  61. <form>
  62. <button class="button button2"type="button" onclick="window.location.href='NurseInformation.html'"> nurse information </button><br><br>
  63.  </form>
  64.  
  65.  
  66.  
  67.  
  68.  
  69. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement