Advertisement
Booster

Sofuni Header

Feb 14th, 2015
350
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 3.07 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  5.         <title>Website Header</title>
  6.         <style>
  7.             body {
  8.                 color: white;
  9.                 font: 12px Verdana, sans-serif;
  10.                 text-transform: uppercase;
  11.             }
  12.             #main-table {
  13.                 width: 1000px;
  14.                 background: #245882;
  15.             }
  16.             .menu-row {
  17.                 text-align: center;
  18.             }
  19.             .inner-table {
  20.                 width: 100%;
  21.             }
  22.             #search-form {
  23.                 border-radius: 5px;
  24.             }
  25.             .button {
  26.                 float: right;
  27.                 width: 18px;
  28.                 height: 26px;
  29.                 border-radius: 0 5px 5px 0;
  30.                 border: none;
  31.                 border-left: 1px solid gray;
  32.                 background: white;
  33.                
  34.                 background-image: url(pictures/search.png);
  35.                 background-position: 0px;
  36.                 background-repeat: no-repeat;
  37.                 vertical-align: top;
  38.                 margin-top: 2px;
  39.                 line-height: 1.8em;
  40.             }
  41.             .search-field {
  42.                 width: 130px;
  43.                 height: 26px;
  44.                 text-align: right;
  45.                 padding-right: 10px;
  46.                 border: none;
  47.             }
  48.             .search-input {
  49.                 border-radius: 5px 0 0 5px;
  50.                 border: none;
  51.                 background-color: white;
  52.                 margin-top: 2px;
  53.                 line-height: 1.8em;
  54.                 padding-left: 3px;
  55.             }
  56.             a {
  57.                 text-decoration: none;
  58.                 color: inherit;
  59.             }
  60.             .user {
  61.                 width: 80px;
  62.                 text-align: right;
  63.             }
  64.             .bell {
  65.                 padding-top: 10px;
  66.                 text-align: right;
  67.                 width: 400px;
  68.                 vertical-align: middle;
  69.                 line-height: 2.2em;
  70.             }
  71.             .bell-img {
  72.                 float: right;
  73.                 margin-top: 2px;
  74.                 margin-left: 5px;
  75.             }
  76.            
  77.         </style>
  78.     </head>
  79.     <body>
  80.         <header>
  81.             <table id="main-table">
  82.                 <tr>
  83.                     <td rowspan="2">
  84.                         <a href="https://softuni.bg" target="_blank">
  85.                             <img src="pictures/logo transparant.png" alt="logo" title="softuni logo" width="255px" height="65px">
  86.                         </a>
  87.                     </td class="bell">
  88.                     <td colspan="3" class="bell">
  89.                         0
  90.                         <div class="bell-img">
  91.                             <img src="pictures/bell.gif" alt="bell">
  92.                         </div>
  93.                     </td>
  94.                     <td colspan="3">
  95.                         <table class="inner-table">
  96.                             <tr>
  97.                                 <td class="user">user ▼</td>
  98.                                 <td class="search-field" colspan="2">
  99.                                     <form id="search-form" method="GET" autocomplete="off">
  100.                                         <input class="search-input" type="text" maxlength="100" placeholder="search...">
  101.                                         <button class="button" type="submit"></button>
  102.                                     </form>
  103.                                 </td>
  104.                             </tr>
  105.                         </table>
  106.                     </td>
  107.                 </tr>
  108.                 <tr class="menu-row">
  109.                     <td>
  110.                         <a href="http://dir.bg" target="_blank">news</a>
  111.                     </td>
  112.                     <td>
  113.                         <a href="https://softuni.bg" target="_blank">about the university ▼</a>
  114.                     </td>
  115.                     <td>
  116.                         <a href="https://www.youtube.com/user/softwareuniversity" target="_blank">training courses ▼</a>
  117.                     </td>
  118.                     <td>
  119.                         <a href="http://computerworld.bg/inenglish/top100" target="_blank">for companies</a>
  120.                     </td>
  121.                     <td>
  122.                         <a href="https://softuni.bg/forum" target="_blank">forum</a>
  123.                     </td>
  124.                     <td>
  125.                         <a href="https://softuni.bg/contacts" target="_blank">contacts</a>
  126.                     </td>
  127.                 </tr>
  128.                 <tr>
  129.                 </tr>
  130.             </table>
  131.         </header>
  132.     </body>
  133. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement