Advertisement
Guest User

Untitled

a guest
Apr 21st, 2020
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.51 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Новостное агенство</title>
  5.     <link rel="stylesheet" type="text/css" href="styles.css">
  6. </head>
  7. <body>
  8.     <div id="black-bar">
  9.         <div class="fixed-container">
  10.             Самые <a href="#">свежие новости</a> в реальном времени
  11.            
  12.             <div id="datetime">12:30 19.06.2018</div>
  13.  
  14.         </div> 
  15.     </div>
  16.  
  17.     <div id="header">
  18.         <div class="fixed-container">
  19.             <img id="logo" src="logo.png">
  20.            
  21.                <label class="select-wrapper"> Выбор города
  22.                     <select class="custom-select">
  23.                     <option value="Msc">Москва</option>
  24.                     </select>
  25.                 </label>
  26.                <span class="weather">22&deg;C</span>
  27.                <div>
  28.                   <form id="search-bar">
  29.                      <input type="text" placeholder="Поиск по сайту">
  30.                      <button type="submit"></button>
  31.                   </form>
  32.                 </div>
  33.            
  34.         </div>
  35.         <div id="navigation-menu" class="fixed-container">
  36.         <nav id="menu-container">
  37.        
  38.             <div class="menu-item">Главная </div>
  39.             <div class="menu-item">Политика </div>
  40.             <div class="menu-item">Общество </div>
  41.             <div class="menu-item">Экономика </div>
  42.             <div class="menu-item">В мире </div>
  43.             <div class="menu-item">Проишествия </div>
  44.             <div class="menu-item">Спорт </div>
  45.             <div class="menu-item">Наука </div>
  46.             <div class="menu-item">Туризм</div>
  47.         </nav>
  48.  
  49.         </div>
  50.     </div>
  51.    
  52.  
  53. </body>
  54. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement