Advertisement
AlvinSeville7cf

Sidebar

Aug 5th, 2021
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.02 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <base target="_top">
  5.     <link rel="stylesheet" href="https://ssl.gstatic.com/docs/script/css/add-ons1.css">
  6.   </head>
  7.   <body>
  8.     <style>
  9.     .branding-below {
  10.       bottom: 56px;
  11.       top: 0;
  12.     }
  13.     </style>
  14.  
  15.     <div class="sidebar branding-below">
  16.       <div class="block form-group">
  17.         <label for="search">
  18.           <b>Search:</b>
  19.         </label>
  20.         <input id="search" type="text" width="*">
  21.       </div>
  22.  
  23.       <div class="block form-group">
  24.         <label for="replace">
  25.           <b>Replace:</b>
  26.         </label>
  27.         <input id="replace" type="text" width="*">
  28.       </div>
  29.  
  30.     <div class="block">
  31.         <button id="search-button" class="action">Search</button>
  32.         <button id="replace-button" class="action">Replace</button>
  33.         <button>Clear</button>
  34.       </div>
  35.     </div>
  36.  
  37.     <div class="sidebar bottom">
  38.       <span class="gray">
  39.         Regex tool by Alvin Seville (c) 2021
  40.       </span>
  41.     </div>
  42.   </body>
  43. </html>
  44.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement