Advertisement
Guest User

Untitled

a guest
Apr 4th, 2020
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.72 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>ДЗ</title>
  5.     <meta charset="utf-8">
  6.     <style type="text/css">
  7.         ul {
  8.            list-style-type: none;
  9.            background: lightgrey;
  10.            width: 200px;
  11.            margin: 0;
  12.            padding: 0;
  13.         }
  14.         li a {
  15.             display: black;
  16.             color: black;
  17.             padding: 8px 16px;
  18.             text-decoration: none; 
  19.         }
  20.  
  21.  
  22.  
  23.          li a:hover {
  24.            background-color: grey;
  25.            color: white;
  26.         }
  27.     </style>
  28. </head>
  29. <body>
  30.     <h2>Вертикальное меню</h2>
  31.     <ul>
  32.         <li><a href="#">Главная</a></li>
  33.         <li><a href="#">Сервис</a></li>
  34.         <li><a href="#">Контакты</a></li>
  35.         <li><a href="">Поиск</a></li>
  36.         <li><a href="#">Помошь</a></li>
  37.     </ul>
  38. </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement