Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. const dropDown = document.getElementById("nav-bar-grey");
  2. const navBarOpen = document.getElementById("new-drop-down-js");
  3. dropDown.onclick = showNav
  4. const closeButton = document.getElementById("closebtn");
  5. closeButton.onclick = closeNav
  6.  
  7.  
  8. function showNav (event) {
  9. navBarOpen.classList.toggle("nav-open");
  10. }
  11.  
  12. function closeNav (event) {
  13. navBarOpen.classList.toggle("nav-close");
  14. }
  15.  
  16. <!--//mobile -->
  17.  
  18. <div class="background-about-mobile">
  19. <div class="white-bg-about">
  20.  
  21. <h3>About.</h3>
  22. <div class="dash"> - </div>
  23. <h6>Who are we?</h6>
  24.  
  25. <p class="about-text-mobile">We are a professional Carpet cleaning company that operates in the Leicestershire Region. Specialising in Carpet, Upholstery, hard floors, blinds and curtain cleaning fully insured, DBS Checked with 12 years plus experience.</p>
  26. <div class="dash"> - </div>
  27. <h6>What Services do we provide?</h6>
  28.  
  29. <ul>
  30. <li>- Carpet cleaning</li>
  31. <li>- Rug cleaning</li>
  32. <li>- Stain removal</li>
  33. <li>- Amtico and Karndean maintenance</li>
  34. <li>- Hard Floor Maintence</li>
  35. <li>- Curtains and blinds cleaning.</li>
  36. </ul>
  37.  
  38.  
  39. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement