Advertisement
Guest User

Untitled

a guest
Jan 25th, 2020
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="ru">
  3. <head>
  4. <meta charset="UTF-8">
  5. <link rel="stylesheet" href="style/index.css">
  6. <title>Document</title>
  7. </head>
  8. <body>
  9. <div class="header">
  10. <h1>BIP.ru</h1>
  11. <ul>
  12. <li>Home</li>
  13. <li>Gallery</li>
  14. <li>Members</li>
  15. <li>Logout</li>
  16. </ul>
  17. </div>
  18. </body>
  19. </html>
  20.  
  21. body {
  22. margin: 0;
  23. }
  24.  
  25. h1 {
  26. font-size: 26px;
  27. float: left;
  28. padding-right: 250px;
  29. }
  30.  
  31. .header {
  32. background-color: #ccc;
  33. color: #000;
  34. max-width: 100%;
  35. padding: 15px 200px;
  36. }
  37.  
  38. .header ul {
  39. display: -webkit-flex;
  40. display: -moz-flex;
  41. display: -ms-flex;
  42. display: -o-flex;
  43. display: flex;
  44. justify-content: space-between;
  45. list-style: none;
  46. }
  47.  
  48. .header ul li {
  49. display: inline-block;
  50. font-size: 18px;
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement