Advertisement
coasterka

#4WebsiteHeader

Jun 5th, 2014
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.32 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <link type="text/css" rel="stylesheet" href="styles/stylesheet-problem-4.css"/>
  5.         <title>Website Header</title>
  6.     </head>
  7.     <body>
  8.         <div id="header">
  9.             <table cellpadding="5px">
  10.                 <tr>
  11.                     <td class="softuni-logo" rowspan="2">
  12.                         <a href="https://softuni.bg/" target="_blank"><img src="images/softuni-full-logo.png" alt="softuni-logo"/></a>
  13.                     </td>
  14.                     <td> </td>
  15.                     <td> </td>
  16.                    
  17.                 <td>
  18.                     <span class="notifications">0
  19.                         <input type="image" src="images/ringbell.png" name="notifBtn" alt="Notifications" onclick="openWd();"/>
  20.                         <script type="text/javascript">
  21.                             function openWd() {
  22.                                 alert("You have no new notifications!");                               
  23.                             }
  24.                         </script>
  25.                     </span>
  26.                    
  27.                 </td>
  28.                 <td>
  29.                     <span class="user" onclick="showMenu();">USER &#x25BE;
  30.                         <!--leave the field to exit the dropdown-->
  31.                         <ul id="user-menu" onmouseleave="hideMenu()">
  32.                             <li><a href="https://softuni.bg/users/profile/show" target="_blank">VIEW ACCOUNT</a></li>
  33.                             <li><a href="https://softuni.bg/account/manage" target="_blank">MANAGE</a></li>
  34.                         </ul>
  35.                         <script type="text/javascript">
  36.                             function showMenu() {
  37.                                 document.getElementById("user-menu").style.display="block";
  38.                             }
  39.                             function hideMenu() {
  40.                                 document.getElementById("user-menu").style.display="none";
  41.                             }
  42.                         </script></span>
  43.                 </td>
  44.                 <td colspan="2">
  45.                     <div id="search">
  46.                         <span>Search                           
  47.                             <input type="image" src="images/zoom.png" name="search-btn" alt="Submit"/>                         
  48.                         </span>
  49.                         <input class="search-engine" type="text" id="text" name="search" autofocus="autofocus" />
  50.                     </div>
  51.                 </td>
  52.                 </tr>
  53.                 <tr class="bottom-row">
  54.                     <td><a target="_blank" href="https://softuni.bg/news">NEWS</a></td>
  55.                     <td><a target="_blank" href="https://softuni.bg/about">ABOUT THE UNIVERSITY &#x25BE;</a></td>
  56.                     <td><a target="_blank" href="https://softuni.bg/trainings/courses/list">TRAINING COURSES &#x25BE;</a></td>
  57.                     <td><a target="_blank" href="https://softuni.bg/companies">FOR COMPANIES</a></td>
  58.                     <td><a target="_blank" href="https://softuni.bg/forum">FORUM</a></td>
  59.                     <td><a target="_blank" href="https://softuni.bg/contacts">CONTACTS</a></td>
  60.                 </tr>
  61.             </table>
  62.         </div>
  63.     </body>
  64. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement