Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta name="viewport" content="width=device-width, initial-scale=1">
  5. <style>
  6. body {font-family: Arial;}
  7.  
  8.  
  9. .tab {
  10. overflow: hidden;
  11. border: 1px solid #ccc;
  12. background-color: #f1f1f1;
  13. }
  14.  
  15.  
  16. .tab button {
  17. background-color: inherit;
  18. float: left;
  19. border: none;
  20. outline: none;
  21. cursor: pointer;
  22. padding: 14px 16px;
  23. transition: 0.3s;
  24. font-size: 17px;
  25. }
  26.  
  27.  
  28. .tab button:hover {
  29. background-color: #ddd;
  30. }
  31.  
  32.  
  33. .tab button.active {
  34. background-color: #ccc;
  35. }
  36.  
  37.  
  38. .tabcontent {
  39. display: none;
  40. padding: 6px 12px;
  41. border: 1px solid #ccc;
  42. border-top: none;
  43. }
  44. </style>
  45. </head>
  46. <body>
  47.  
  48.  
  49.  
  50. <div class="tab">
  51. <button >Home</button>
  52. <button >About</button>
  53. <button >Admission</button>
  54. <button >Academics</button>
  55. <button >Research</button>
  56. <button >On Campus</button>
  57. <button >Visitor</button>
  58. <button >International</button>
  59. </div>
  60.  
  61.  
  62. <div class="tab">
  63. <button >NGPC</button>
  64. <button >Math Olympiad</button>
  65. <button >IOPC</button>
  66. <button >ICPC</button>
  67. <button >Science Fest</button>
  68.  
  69. </div>
  70.  
  71.  
  72. <p><font size="6">DIVISON OF RESEARCH USEFUL LINK</font></p>
  73.  
  74.  
  75.  
  76.  
  77. </body>
  78. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement