Advertisement
phirani

Homepage Coding

Apr 9th, 2015
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1.  
  2.  
  3.  
  4. <!DOCTYPE html>
  5.  
  6. <html>
  7.  
  8.  
  9.  
  10. <head>
  11. <title> Search Feature</title>
  12. <link href="style.css" type="text/css" rel="stylesheet" />
  13.  
  14. <script type="text/javascript">
  15. $(document).ready(function(){
  16. $('#SmartCart').smartCart();
  17. });
  18. </script>
  19. </head>
  20.  
  21. <body>
  22.  
  23. <div id="nav">
  24. <div id="nav_wrapper">
  25. <ul>
  26. <li><a href="homepage.html">Home</a></li>
  27. <li><a href="menu.html">Shopping Basket</a></li>
  28. <li><a href="#">Categories <img src="arrow.png" /></a>
  29.  
  30. <ul>
  31. <li><a href="Reggae.html">Reggae</a></li>
  32. <li><a href="#">Rap</a></li>
  33. <li><a href="#">UK Rap</a></li>
  34.  
  35. </ul>
  36. <li><a href="home.html">Search</a></li>
  37.  
  38.  
  39. </li>
  40. </ul>
  41. </div>
  42. </div>
  43.  
  44.  
  45. <svg height="50" width="1260">
  46. <defs>
  47. <filter id="f3" x="0" y="0" width="200%" height="200%">
  48. <feOffset result="offOut" in="SourceAlpha" dx="20" dy="20" />
  49. <feGaussianBlur result="blurOut" in="offOut" stdDeviation="10" />
  50. <feBlend in="SourceGraphic" in2="blurOut" mode="normal" />
  51. </filter>
  52. </defs>
  53. <rect width="1300" height="25" stroke="blue" stroke-width="1"
  54. fill="white" filter="url(#f3)" />
  55. </svg>
  56.  
  57.  
  58.  
  59. </body>
  60. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement