Advertisement
Guest User

as

a guest
Oct 7th, 2015
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.95 KB | None | 0 0
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="home.aspx.cs" Inherits="AppleSolutions.home" %>
  2.  
  3. <!DOCTYPE html>
  4.  
  5. <html xmlns="http://www.w3.org/1999/xhtml">
  6. <head runat="server">
  7. <title>Apple Solutions</title>
  8. <meta charset="utf-8" />
  9.  
  10. <style type="text/css">
  11. a {text-decoration: none}
  12.  
  13. </style>
  14.  
  15. <link rel="stylesheet" href="applesolutions.css" />
  16.  
  17. <script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
  18. <script type="text/javascript" src="jquery.js"></script>
  19.  
  20. <script type="text/javascript"> // jQuery script som använts för att göra "under" menyn på sidans Meny Bar
  21. // framtagen med hjälp av en källa: http://www.webchief.co.uk/blog/simple-jquery-dropdown-menu/
  22. $(document).ready(function () {
  23. $('.menyBar > li').bind('mouseover', oppnaUnderMenyn);
  24. $('.menyBar > li').bind('mouseout', stangUnderMenyn);
  25.  
  26. function oppnaUnderMenyn() {
  27. $(this).find('ul').css('visibility', 'visible');
  28. };
  29.  
  30. function stangUnderMenyn() {
  31. $(this).find('ul').css('visibility', 'hidden');
  32. };
  33. });
  34. </script>
  35. <!--Slut-->
  36.  
  37.  
  38. </head>
  39. <body>
  40. <div id="over">
  41. <div id="minMeny">
  42. <nav>
  43. <ul class="menyBar">
  44. <li><a href='#'>Start</a></li>
  45. <li><a href='#'>iPhone</a>
  46. <ul>
  47. <li><a href="#">iPhone 5/5s</a></li>
  48. <li><a href="#">iPhone 6/6s</a></li>
  49. </ul>
  50. </li>
  51.  
  52. <li><a href='#'>iPad</a>
  53. <ul>
  54. <li><a href="#">iPad Air</a></li>
  55. <li><a href="#">iPad Mini</a></li>
  56. </ul>
  57. </li>
  58. <li><a href='#'>Mac</a>
  59. <ul>
  60. <li><a href="#">MacBook Air</a></li>
  61. <li><a href="#">MacBook Pro</a></li>
  62. <li><a href="#">iMac</a></li>
  63. </ul>
  64. </li>
  65. <li><a href='#'>Kontakt</a></li>
  66. <li><a href="#">Användare</a>
  67. <ul>
  68. <li><a href="#">Konto</a></li>
  69. </ul>
  70. </li>
  71. <li><a href="#">Logga ut</a></li>
  72. </ul>
  73.  
  74.  
  75.  
  76. </nav>
  77.  
  78. </div>
  79.  
  80. <br/><br/><br/><br/><br/><br/>
  81. <h1>Apple Solutions</h1>
  82. <h3>Leverantör av apple produkter till företagare!</h3>
  83.  
  84. </div>
  85. <div id="main">
  86. <br/><br/><br/>
  87. <h2>Välkommen till Apple Solutions</h2>
  88. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
  89. </p>
  90. </div>
  91.  
  92. <div id="footer">
  93.  
  94. Copyright © 2015 Ivan Davoud™. All rights reserved.
  95.  
  96. </div>
  97. </body>
  98. </html>
  99.  
  100. --------------------------------------------------------------------------------------------------------------------------
  101.  
  102.  
  103. body
  104. {
  105. }
  106.  
  107. .auto-style1
  108. {
  109. width: 100%;
  110. }
  111.  
  112. .auto-style2
  113. {
  114. width: 287px;
  115. text-align: right;
  116. }
  117.  
  118. .auto-style3
  119. {
  120. width: 287px;
  121. }
  122.  
  123. .auto-style4
  124. {
  125. width: 165px;
  126. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement