Guest User

Untitled

a guest
Oct 18th, 2019
435
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <link rel="stylesheet" type="text/css" href="style.css"/>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <title>Website</title>
  9. <script src="https://kit.fontawesome.com/87232c8297.js" crossorigin="anonymous"></script>
  10. <script>
  11. /* When the user clicks on the button,
  12. toggle between hiding and showing the dropdown content */
  13. function myFunction() {
  14. document.getElementById("myDropdown").classList.toggle("show");
  15. }
  16.  
  17. // Close the dropdown if the user clicks outside of it
  18. window.onclick = function(event) {
  19. if (!event.target.matches('.dropbtn')) {
  20. var dropdowns = document.getElementsByClassName("dropdown-content");
  21. var i;
  22. for (i = 0; i < dropdowns.length; i++) {
  23. var openDropdown = dropdowns[i];
  24. if (openDropdown.classList.contains('show')) {
  25. openDropdown.classList.remove('show');
  26. }
  27. }
  28. }
  29. }
  30. </script>
  31.  
  32. </head>
  33. <body>
  34. <div class="header">
  35. <h1 class="titlemain">The Little Beauty Studio</h1>
  36. <img class="logomain" src="img/lblogo.png" alt="The PHP logo">
  37. </div>
  38. <div class="dropdown">
  39. <button onclick="myFunction()" class="dropbtn">Dropdown</button>
  40. <div id="myDropdown" class="dropdown-content">
  41. <a href="page2.php">Home</a>
  42. <a href="#about">About</a>
  43. <a href="#contact">Contact</a>
  44. </div>
  45. </div>
  46. <div class="icons">
  47. <a href=""><i class="fab fa-instagram"></i></a>
  48. <a href="https://www.google.com"><i class="fab fa-facebook-square"></i></a>
  49. <a href="page2.php"><i class="fab fa-instagram"></i></a>
  50. </div>
  51. <div class="reviews"></div>
  52. <div class="map"></div>
  53. <div class="slideshow" style="border-style: solid;"></div>
  54. <div class="footer">
  55. <p>Created by: <a href="https://www.leeshewan.tech">Lee Shewan</a></p>
  56. </div>
  57. </body>
  58. </html>
Advertisement
Add Comment
Please, Sign In to add comment