Advertisement
Arnab_Manna

Type of list in html

Jun 3rd, 2021
1,001
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.78 KB | None | 0 0
  1.  
  2. <html>  
  3.  
  4. <head>  
  5.  
  6. <title>ordered list</title>  
  7.  
  8. </head>  
  9.  
  10. <body>  
  11.  
  12. <ol>  
  13. <CAPTION>
  14.                 <h1>Example of ordered List</h1>
  15.                 </CAPTION>
  16. <li></li>  
  17.  
  18. <li>c++ </li>  
  19.  
  20. <li>Java</li>  
  21.  
  22. <li>Python</li>  
  23.  
  24. <li>Javascript</li> 
  25. </ol>
  26. <ul>  
  27. <CAPTION>
  28.                 <h1>Example of Un-ordered List</h1>
  29.                 </CAPTION>
  30.  
  31. <li></li>  
  32.  
  33. <li>c++ </li>  
  34.  
  35. <li>Java</li>  
  36.  
  37. <li>Python</li>  
  38.  
  39. <li>Javascript</li>  
  40.  
  41. </ul>  
  42.  
  43.  
  44.  
  45. <p><h1>example of Definition list </h1></p>  
  46.  
  47. <dl>  
  48.  
  49. <dt>Apple</dt>  
  50.  
  51. <dd> is a Healthy Fruit</dd>  
  52.  
  53. <dt>HTML</dt>  
  54.  
  55. <dd> is a Markup Languages</dd>  
  56.  
  57. <dt>Javascript</dt>  
  58.  
  59. <dd> is a Scripting languages</dd>  
  60. </dl> 
  61. </body> 
  62.  
  63.  
  64.  
  65. </html>
  66.  
  67.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement