Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge" />
  7. <title>Table</title>
  8. </head>
  9. <body>
  10. <h1>Table Split</h1>
  11. <br />
  12. <table width="500px" height="550px" border="1px">
  13. <caption>
  14. Design a web page following the using layout provided below.
  15. </caption>
  16. <tr>
  17. <th colspan="2"><header>&#8826;header&#8827;</header></th>
  18. </tr>
  19. <tr>
  20. <th colspan="2"><nav>&#8826;nav&#8827;</nav></th>
  21. </tr>
  22. <tr>
  23. <th><section>&#8826;section&#8827;</section></th>
  24. <th rowspan="2"><aside>&#8826;aside&#8827;</aside></th>
  25. </tr>
  26. <tr>
  27. <th><article>&#8826;article&#8827;</article></th>
  28. </tr>
  29. <tr>
  30. <th colspan="2"><footer>&#8826;footer&#8827;</footer></th>
  31. </tr>
  32. </table>
  33. </body>
  34. </html>
  35.  
  36. index.html
  37. Displaying index.html.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement