Advertisement
Guest User

homepage

a guest
Mar 8th, 2018
327
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.95 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Kate Kinkade</title>
  6. <link href="ver2.css" rel="stylesheet">
  7. <link href="https://fonts.googleapis.com/css?family=Varela+Round" rel="stylesheet">
  8. <link href="https://fonts.googleapis.com/css?family=Quicksand:700" rel="stylesheet">
  9.  
  10. </head>
  11. <body>
  12.  
  13. <div class="main">
  14. <div class="header">
  15. <div class="title">Kate Kinkade</div>
  16.  
  17. <div class="navbar"><ul>
  18. <li><a href="http://katekinkade.com/">Home</a></li>
  19. <li>
  20. <a href="javascript:showhide('contact')">
  21. Contact
  22. </a></li>
  23.  
  24. <li>
  25. <a href="javascript:showhide('socials')">
  26. Socials
  27. </a></li></ul>
  28.  
  29. <div id="contact">
  30.  
  31. <a href="mailto:katekinkade@gmail.com">
  32. Email me: </a> katekinkade@gmail.com
  33.  
  34.  
  35. <button id="copy-button">Copy</button>
  36. <div class="hide">
  37. <textarea id="copy-area">
  38. katekinkade@gmail.com</textarea></div>
  39. <p id="debug-text"></p>
  40. <script src="./index.js"></script>
  41.  
  42.  
  43. </div>
  44.  
  45. <div id="socials">
  46. <p><a href="http://www.instagram.com/katekinko">
  47. Instagram</a><a href="https://uk.linkedin.com/in/katekinkade">Linkedin</a></p>
  48.  
  49. </div>
  50.  
  51. </div></div>
  52.  
  53. <!--end header-->
  54.  
  55. <div class="boxcontainer">
  56.  
  57. <div class="row1">
  58. <div class="textbox1">
  59. <p><u>About</u></p>
  60. <p>Based in Minneapolis, presently living in London.</p>
  61. <p>Communications: Media Studies major at Richmond, the American International University in London.</p>
  62. <p>lorem ipsum, etc... put something here</p>
  63. </div>
  64.  
  65.  
  66. <div class="textbox2">
  67. <a href="http://katekinkade.com/cv"><p><u>Résumé</u></p></a>
  68. <div class="textimg"><a href="http://katekinkade.com/cv"><img src="https://i.imgur.com/Q17X5gr.png"></a></div>
  69. </div>
  70.  
  71. </div>
  72.  
  73. <div class="row2">
  74. <div class="design">
  75. <a href="http://katekinkade.com/design"><img src="https://i.imgur.com/dsomJ33.jpg" alt="design"></a></div>
  76. <div class="shirts">
  77. <a href="http://katekinkade.com/shirts"><img src="https://i.imgur.com/STtTitF.jpg" alt="shirts"></a>
  78. </div>
  79. </div>
  80.  
  81.  
  82. <div class="row3">
  83. <div class="art"><a href="http://katekinkade.com/art"><img src="https://i.imgur.com/gR1gYA0.jpg"></a></div>
  84. <div class="video"><a href="http://katekinkade.com/video"><img src="https://i.imgur.com/jQELnfr.jpg"></a></div>
  85. <div class="photo"><a href="http://photo.katekinkade.com/"><img src="https://i.imgur.com/IuUv5YN.jpg"></a></div>
  86. </div>
  87.  
  88.  
  89. </div></div>
  90.  
  91. <div class="footer">
  92. <div class="copyright">coded by kate</div></div>
  93.  
  94. <!--is this copyright tacky? decide later-->
  95. <!--show/hide navigation script-->
  96.  
  97. <script> function showhide(id) {
  98. var e = document.getElementById(id);
  99. e.style.display = (e.style.display == 'block') ? 'none' : 'block';
  100. }</script>
  101.  
  102.  
  103.  
  104. <script>const copyButton = document.querySelector("#copy-button");
  105. const copyArea = document.querySelector("#copy-area");
  106. const debugText = document.querySelector("#debug-text");
  107. let copiedText = "";
  108.  
  109. copyButton.addEventListener("click", (e) => {
  110. copyArea.select();
  111.  
  112. try {
  113. copiedText = document.execCommand("copy");
  114. debugText.textContent = "Copied!";
  115. }catch(err) {
  116. debugText.textContent = "The text was not able to be succesfully copied!";
  117. }
  118. });</script>
  119.  
  120.  
  121. <!--show/hide navigation script-->
  122.  
  123. </body>
  124.  
  125.  
  126. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement