HTML Tag for Creating a list
HTML Tag for Creating a list
HTML Tag for Creating a Ordered and Unordered list
<html> <body> <h2>An unordered HTML list</h2> <ul style=”list-style-type:circle;”> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ul> <ol type=”1″> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol> <dl> <dt>Coffee</dt> <dd>- black hot drink</dd> <dt>Milk</dt> <dd>- white cold drink</dd> </dl> </body> </html>
It will…
View On WordPress





