Advertisement
Valleri

difference

Sep 2nd, 2014
354
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. INPUT:
  2.  
  3. html=<!doctype html>
  4. <html>
  5. <body>
  6. <header>
  7. <div style="color:red" id="nav" >
  8. Nav
  9. <div class="aside" style="color:blue">
  10. Aside
  11. <div align = "left" class = "section" style = "color:blue">
  12. <p class="header">
  13. <span class="main">
  14. Hi, I have class="main".
  15. </span>
  16. </p>
  17. </div> <!-- section-->
  18. </div> <!-- aside -->
  19. </div> <!--nav -->
  20. Hello
  21. </header>
  22. </body>
  23. </html>
  24.  
  25. ---------------------------------------------------------------------------------------------------
  26. OUTPUT:
  27.  
  28. <!doctype html>
  29. <html>
  30.  
  31. <body>
  32. <header>
  33.  
  34. <nav style="color:red">
  35. Nav
  36. <aside style="color:blue">
  37. Aside
  38.  
  39. <section align = "left" style = "color:blue">
  40. <p class="header">
  41. <span class="main">
  42. Hi, I have class="main".
  43. </span>
  44. </p>
  45.  
  46. </section>
  47. </aside>
  48. </nav>
  49.  
  50. Hello
  51. </header>
  52. </body>
  53. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement