Advertisement
Guest User

hejhejhej

a guest
Sep 16th, 2014
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.21 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8" />
  5.     <title>Agil Systemutveckling 2013</title>
  6.     <link rel="stylesheet" href="main.css" type="text/css" />
  7.     <script src="file:///Users/tildaamre/Downloads/Agil2013_Elever2014/CSS/about.html"></script>
  8. </head>
  9. <body>
  10. <script>
  11. $(document).ready(function(){
  12.   $("#aboutMe").click(function(){
  13.     $("p").hide();
  14.   });
  15.   $("#aboutMe").show(); // <p>="aboutMe"
  16.   });
  17. $("#contactMe").click(function(){
  18.     $("p").hide(); // Dölj alla andra <p> först
  19.     $(".contactMe").show(); // Visa <p> som har class="aboutMe"
  20.   });
  21. });
  22.  
  23. });
  24. </script>
  25.  
  26. <div id="header">
  27. <h1>Tilda Amré</h1>
  28. </div>
  29.  
  30. <div id="nav">
  31.  
  32. <img src="IMG_7830.JPG" alt="Tilda" style="width:200px">
  33. <a href="#aboutMe" id ="aboutMe" style="text-decoration: none">Om mig <br></a>
  34. <a href="#contactMe" id ="ContactMe"style="text-decoration: none">Kontakta mig<br></a>
  35. <a href="mailto:amre@live.se"style="text-decoration: none">Min mail</a>
  36. </div>
  37.  
  38. <div id="section"">
  39.  
  40. <h1>Om mig</h1>
  41.  
  42.  
  43. </div>
  44.  
  45. <div id="footer">
  46. </div>
  47.  
  48. <p class="aboutMe" style="display:none">Här är text om mig</p>
  49.  
  50. <p class="contactMe" style="display:none">Här är kontaktinformation om mig</p>
  51. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement