Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  4. <title></title>
  5.  
  6. <style>
  7.  
  8. body
  9. {
  10. font-family: Helvetica, Arial, Sans-Serif;
  11. }
  12.  
  13. #policy:hover
  14. {
  15. font-weight: bold;
  16. }
  17.  
  18. #mainframe{
  19. height:400px;
  20. width:610px;
  21. float:right;
  22. overflow:auto;
  23. border:none;
  24. }
  25.  
  26. #layout-container
  27. {
  28. width:800px;
  29. }
  30.  
  31. </style>
  32. <script>
  33.  
  34. $(function()
  35. {
  36. $("selettore_css").on("click", function() { $(this).css("font-weight", "bold"); }
  37. })
  38.  
  39. </script>
  40.  
  41. </head>
  42.  
  43. <body>
  44. <div id="layout-container">
  45.  
  46. <ul id="navigation">
  47. <div id="#policy"><li><a href="policy1.html" target="mainframe">policy 1</a></li></div>
  48. <div id="#policy"><li><a href="policy2.html" target="mainframe">policy 1</a></li></div>
  49. <div id="#policy"><li><a href="policy3.html" target="mainframe">policy 1</a></li></div>
  50. </ul>
  51.  
  52. <iframe id="mainframe" name="mainframe" src="policy1.html" allowtransparency="true"></iframe>
  53. </div>
  54.  
  55.  
  56.  
  57.  
  58. </body>
  59. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement