Advertisement
zTHERMALTAKE

Untitled

Oct 17th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.70 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3. <title>Younoob</title>
  4.  
  5. <head>
  6. <style>
  7.     header,footer
  8.         {
  9.             background-color: gray;
  10.         }
  11.     section
  12.         {
  13.             background-color: lightblue;
  14.         }
  15.     body
  16.         {
  17.             background-color: silver;
  18.         }
  19.     header,footer ,aside,article
  20.         {
  21.             outline-color: black;
  22.             outline-style: solid;
  23.             outline-width: 1px;
  24.         }
  25.     aside
  26.     {
  27.         float: left;
  28.         width : 10%;
  29.     }
  30.     article
  31.     {
  32.         float: right;
  33.         width: 85%;
  34.     }
  35.     footer
  36.     {
  37.         clear: both;
  38.         position: relative;
  39.     }
  40. </style>
  41. <meta charset="utf-8">
  42. <marquee bgcolor="pink" scrolldelay="20""><H1>LAB HTML5</H1></marquee>
  43. </head>
  44.     <body>
  45.         <header><h3>This is HEADER</h3>
  46.                 <p>Website Name</p>
  47.         </header>
  48.             <section>
  49.                 <aside>
  50.                     <h2 style="color: blue">MENU</h2>
  51.                     <ul>
  52.                         <li><a href="http://www.google.co.th">MENU1</a></li>
  53.                         <li><a href="page1.html">PAGE1</a></li>
  54.                         <li><a href="page2.html">REGISTER FORM</a></li>
  55.                     </ul>
  56.                 </aside>
  57.                     <article>
  58.                         <H3 style ="font-style: italic;">This is content</H3>
  59.                         <br>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  60.                         <br>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  61.                         <br>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  62.                         <br>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  63.                         <br>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  64.                         <br>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  65.                         <br>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  66.                         <br>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  67.                         <br>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  68.                         <br>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  69.                     </article>
  70.             </section>
  71.         <footer><h3>This is FOOTER</h3>
  72.                 <p>Copyright</p>
  73.         </footer>
  74.     </body>
  75. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement