Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <HTML>
  3. <HEAD>
  4. <style>
  5. ul {
  6. list-style-type: none;
  7. margin: 0;
  8. padding: 0;
  9. }
  10.  
  11. li {
  12. position: sticky;
  13. float: left;
  14. }
  15.  
  16. li a {
  17. display: block;
  18. color: black;
  19. text-align: center;
  20. padding: 14px 30px;
  21. text-decoration: none;
  22. }
  23.  
  24. li a:hover:not(.active) {
  25. background-color: #ddd;
  26. }
  27.  
  28. li a:hover {
  29. background-color: #ddd;
  30. }
  31.  
  32. .active {
  33. background-color: red;
  34. }
  35. </style>
  36. <META HTTP-EQUIV = "Content-Type" CONTENT = "text/html;
  37. charset = utf-8">
  38. <TITLE>Training Website</TITLE>
  39. </HEAD>
  40. <BODY STYLE = "background-color:#ffff99;">
  41. <H1 STYLE = "font-family:times new roman; color:red;" ALIGN = "center">LFC SHOP</H1>
  42. <HR>
  43. <ul>
  44. <li><a href="home.html">Home</a></li>
  45. <li><a class ="active" href="shop.html">Shop</a></li>
  46. <li><a href="reg.html">Register</a></li>
  47. <li style="float:right"><a href="contact.html">Contact</a></li>
  48. </ul>
  49.  
  50.  
  51.  
  52. </BODY>
  53. </HTML>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement