Advertisement
TheiPhoneFan

Mobile Tab Bar HTML

Apr 5th, 2024 (edited)
734
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.04 KB | None | 0 0
  1. <!-- Created by TheiPhoneFan on 2024-04-05 -->
  2. <!-- Revised On 2024-05-04 -->
  3. <!DOCTYPE html>
  4. <html>
  5.  
  6. <head>
  7.     <style>
  8.         .bottom-tab-bar {
  9.             background-image: url('https://theiphonefan.w3spaces.com/theme/pinstripes-1x.png');
  10.             height: 55px;
  11.             width: 98.5%;
  12.             border-radius: 16px;
  13.             position: fixed;
  14.             bottom: 0;
  15.             border: 1px solid grey;
  16.         }
  17.  
  18.         .bottom-tab-bar img {
  19.             height: 45px;
  20.             margin: 5px;
  21.         }
  22.  
  23.         .bottom-tab-bar img:hover {
  24.             background-color: #bfbfbf;
  25.             border-radius: 5px;
  26.         }
  27.  
  28.         .menu {
  29.             padding: 0;
  30.             margin: 0;
  31.         }
  32.  
  33.         .menu li {
  34.             display: inline;
  35.             text-align: center;
  36.         }
  37.  
  38.         a {
  39.             text-decoration:none;
  40.         }
  41.  
  42.         /* Implement this if you wish to only show the tab bar on mobile.
  43.         @media screen and (min-width:750px) {
  44.             .bottom-tab-bar {
  45.                 display: none;
  46.             }
  47.         }
  48.         */
  49.     </style>
  50. </head>
  51.  
  52. <body>
  53.     <div class="bottom-tab-bar">
  54.         <ul class="menu">
  55.             <!-- Articles Tab Button -->
  56.             <li>
  57.                 <a href="https://theiphonefan.w3spaces.com/articles.html">
  58.                     <img src="https://theiphonefan.w3spaces.com/theme/glyphs/articles.png">
  59.                 </a>
  60.             </li>
  61.  
  62.             <!-- Clipart Tab Button -->
  63.             <li>
  64.                 <a href="https://theiphonefan.w3spaces.com/clipart.html">
  65.                     <img src="https://theiphonefan.w3spaces.com/theme/glyphs/clipart.png">
  66.                 </a>
  67.             </li>
  68.  
  69.             <!-- My Photograhy Tab Button -->
  70.             <li>
  71.                 <a href="https://theiphonefan.w3spaces.com/my-photography.html">
  72.                     <img src="https://theiphonefan.w3spaces.com/theme/glyphs/my-photography.png">
  73.                 </a>
  74.             </li>
  75.         </ul>
  76.     </div>
  77. </body>
  78.  
  79. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement