Advertisement
Guest User

Untitled

a guest
Jan 14th, 2019
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <title>devGift!</title>
  5. <meta charset="UTF-8" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <style>
  8. * {
  9. box-sizing: border-box;
  10. }
  11.  
  12. nav ul {
  13. list-style-type: none;
  14. margin: 0;
  15. padding: 0;
  16. margin-bottom: 20px;
  17. background-color: #333;
  18. }
  19.  
  20. nav ul li {
  21. float: left;
  22. }
  23.  
  24. nav ul li a {
  25. color: white;
  26. display: block;
  27. text-align: center;
  28. padding: 16px;
  29. text-decoration: none;
  30. color: #ddd;
  31. }
  32.  
  33. nav ul li a:hover {
  34. background-color: #222;
  35. }
  36.  
  37. header h1 {
  38. text-align: center;
  39. text-decoration: underline;
  40. }
  41.  
  42. @media screen and (max-width: 400px) {
  43. nav ul li {
  44. float: none;
  45. }
  46. }
  47. </style>
  48. </head>
  49. <body>
  50. <nav>
  51. <ul>
  52. <li><a href="#">Home</a></li>
  53. <li><a href="#">Contact us</a></li>
  54. <li><a href="#">Lorem Ipsum</a></li>
  55. </ul>
  56. </nav>
  57. <header>
  58. <h1>A devGift! :)</h1>
  59. </header>
  60. </body>
  61. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement