Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. <style id="jsbin-css">
  2. header {
  3. font-style: italic;
  4. }
  5.  
  6. #content {
  7. border: 2px solid black;
  8. width: 80%;
  9. height: 300px;
  10. }
  11.  
  12. #sidebar {
  13. border: 2px solid black;
  14. float: right;
  15. margin-top: -305px;
  16. width:15%;
  17. }
  18. </style>
  19. <header>
  20. <h1>
  21. Title
  22. </h1>
  23. </header>
  24. <section id="content">
  25. <header>
  26. Article title
  27. </header>
  28. <section>
  29. <p>Article para1 ...</p>
  30. </section>
  31. </section>
  32. <aside id="sidebar">
  33. <header>
  34. Aside
  35. </header>
  36. <ul>
  37. <li>
  38. Item 1
  39. </li>
  40. <li>
  41. Item 2
  42. </li>
  43. </ul>
  44. </aside>
  45. <footer>
  46. <address>
  47. Kevin St, Dublin 8
  48. </address>
  49. </footer>
  50. <script id="jsbin-source-html" type="text/html"><header>
  51. <h1>
  52. Title
  53. </h1>
  54. </header>
  55. <section id="content">
  56. <header>
  57. Article title
  58. </header>
  59. <section>
  60. <p>Article para1 ...</p>
  61. </section>
  62. </section>
  63. <aside id="sidebar">
  64. <header>
  65. Aside
  66. </header>
  67. <ul>
  68. <li>
  69. Item 1
  70. </li>
  71. <li>
  72. Item 2
  73. </li>
  74. </ul>
  75. </aside>
  76. <footer>
  77. <address>
  78. Kevin St, Dublin 8
  79. </address>
  80. </footer>
  81. </script>
  82.  
  83. <script id="jsbin-source-css" type="text/css">header {
  84. font-style: italic;
  85. }
  86.  
  87. #content {
  88. border: 2px solid black;
  89. width: 80%;
  90. height: 300px;
  91. }
  92.  
  93. #sidebar {
  94. border: 2px solid black;
  95. float: right;
  96. margin-top: -305px;
  97. width:15%;
  98. }</script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement