Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="content-type" content="text/html; charset=UTF-8">
- <title>Website Header</title>
- <style>
- body {
- color: white;
- font: 12px Verdana, sans-serif;
- text-transform: uppercase;
- }
- #main-table {
- width: 1000px;
- background: #245882;
- }
- .menu-row {
- text-align: center;
- }
- .inner-table {
- width: 100%;
- }
- #search-form {
- border-radius: 5px;
- }
- .button {
- float: right;
- width: 18px;
- height: 26px;
- border-radius: 0 5px 5px 0;
- border: none;
- border-left: 1px solid gray;
- background: white;
- background-image: url(pictures/search.png);
- background-position: 0px;
- background-repeat: no-repeat;
- vertical-align: top;
- margin-top: 2px;
- line-height: 1.8em;
- }
- .search-field {
- width: 130px;
- height: 26px;
- text-align: right;
- padding-right: 10px;
- border: none;
- }
- .search-input {
- border-radius: 5px 0 0 5px;
- border: none;
- background-color: white;
- margin-top: 2px;
- line-height: 1.8em;
- padding-left: 3px;
- }
- a {
- text-decoration: none;
- color: inherit;
- }
- .user {
- width: 80px;
- text-align: right;
- }
- .bell {
- padding-top: 10px;
- text-align: right;
- width: 400px;
- vertical-align: middle;
- line-height: 2.2em;
- }
- .bell-img {
- float: right;
- margin-top: 2px;
- margin-left: 5px;
- }
- </style>
- </head>
- <body>
- <header>
- <table id="main-table">
- <tr>
- <td rowspan="2">
- <a href="https://softuni.bg" target="_blank">
- <img src="pictures/logo transparant.png" alt="logo" title="softuni logo" width="255px" height="65px">
- </a>
- </td class="bell">
- <td colspan="3" class="bell">
- 0
- <div class="bell-img">
- <img src="pictures/bell.gif" alt="bell">
- </div>
- </td>
- <td colspan="3">
- <table class="inner-table">
- <tr>
- <td class="user">user ▼</td>
- <td class="search-field" colspan="2">
- <form id="search-form" method="GET" autocomplete="off">
- <input class="search-input" type="text" maxlength="100" placeholder="search...">
- <button class="button" type="submit"></button>
- </form>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- <tr class="menu-row">
- <td>
- <a href="http://dir.bg" target="_blank">news</a>
- </td>
- <td>
- <a href="https://softuni.bg" target="_blank">about the university ▼</a>
- </td>
- <td>
- <a href="https://www.youtube.com/user/softwareuniversity" target="_blank">training courses ▼</a>
- </td>
- <td>
- <a href="http://computerworld.bg/inenglish/top100" target="_blank">for companies</a>
- </td>
- <td>
- <a href="https://softuni.bg/forum" target="_blank">forum</a>
- </td>
- <td>
- <a href="https://softuni.bg/contacts" target="_blank">contacts</a>
- </td>
- </tr>
- <tr>
- </tr>
- </table>
- </header>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement