Advertisement
Guest User

Untitled

a guest
Feb 13th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. <section class="content show" id="home">
  2. <h1>Welcome</h1>
  3. <h5>Headline</h5>
  4. <p>Text <br> <b> </b> </p>
  5. <p><a href="#about">More info &#187;</a></p>
  6. </section>
  7.  
  8. <!-- /About Page -->
  9. <section class="content hide" id="about">
  10. <h1>About</h1>
  11. <h5>Some facts about me!</h5>
  12. <p>
  13. <ul>
  14. <li>Alexander</li>
  15. <li>20.02.1994 </li>
  16. <li>Ausbildung zum Mediengestalter in Digital und Print </li>
  17. <li>Webdevelopment & Design </li>
  18. </ul></p>
  19. <p><a href="http://facebook.com/hipsteralex">Subscribe me on Facebook!</a></p>
  20. </section>
  21.  
  22. <!-- /Contact Page -->
  23. <section class="content hide" id="contact">
  24. <h1>Contact</h1>
  25. <h5>Get in touch!</h5>
  26. <p>Email: <a href="#">Alook.de</a><br />
  27. Phone: 05<br /></p>
  28. <p>Jever<br />
  29. Germany</p>
  30. </section>
  31.  
  32.  
  33. .show {
  34. display: block;
  35. }
  36. .hide {
  37. opacity: 0;
  38. }
  39. .content {
  40. color: deepskyblue;
  41. float:left;
  42. margin:40px;
  43. position:absolute;
  44. top:200px;
  45. width:600px;
  46. z-index:9999;
  47. -webkit-font-smoothing:antialiased;
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement