Вы находитесь на странице: 1из 2

<html> <head> <title>Hello HTML</title> </head> <body > <h4>Goals (Ordered list)</h4> <ol> <li>Find a Job</li> <li>Get Money</li>

<li>Move Out</li> </ol> <br> <h4>Goals(ordered list)</h4> <ol start="4" > <li>Buy Food</li> <li>Enroll in College</li> <li>Get a Degree</li> </ol> <br> <h4>Goals(ordered list)</h4> <ol type="a"> <li>Buy Food</li> <li>Enroll in College</li> <li>Get a Degree</li> </ol> <br> <h4>Goals(ordered list)</h4> <ol type="A"> <li>Buy Food</li> <li>Enroll in College</li> <li>Get a Degree</li> </ol> <br> <h4>Goals(ordered list)</h4> <ol type="i"> <li>Buy Food</li> <li>Enroll in College</li> <li>Get a Degree</li> </ol> <br> <h4>Goals(ordered list)</h4> <ol type="I"> <li>Buy Food</li> <li>Enroll in College</li> <li>Get a Degree</li> </ol> <br> <h4>Shopping List(unordered list)</h4> <ul> <li>Milk</li> <li>Toilet Paper</li> <li>Cereal</li> <li>Bread</li>

</ul> <br> <h4>Definition list</h4> <dl> <dt><b>Fromage</b></dt> <dd>French word for cheese.</dd> <dt><b>Voiture</b></dt> <dd>French word for car.</dd> </dt> <br>

</body> </html>

Вам также может понравиться