Posts

Day4-Exercise7(To demonstrate margin,padding,overflow and background-color)

<!To demonstrate margin,padding,overflow and background-color> <html> <head> <style> ul { list-style-type:none; margin:0; padding:0; overflow:hidden; background-color:#333333; } li {   float:left; } li a { display :block; color:white; text-align:center; padding:16px; text-decoration:none; } li a:hover { background-color:#111111; } </style> </head> <body> <ul> <li><a href="#home">home</a></li> <li><a href="#news">news</a></li> <li><a href="#contact">contact</a></li> <li><a href="#about">about</a></li> </ul> </body> </html>

Day4-Exercise6(To Demonstrate Ordered list from the starting number)

<!To  Demonstrate Ordered list from the starting number> <html> <body> <h2>ordered list</h2> <ol start=50> <li>ethiopia</li> <li>eritrea</li> <li>sudan</li> <ol> <ol type="I" start="50"> <li>ethiopia</li> <li>eritrea</li> <li>sudan</li> </ol> </body> </html>

Day4-Exercise5(To Demonstrate UnOrdered list )

<!To  Demonstrate UnOrdered list > <html> <body> <h2>ordered list</h2> <ul>    <li>south africa</li>  <li>North  <ul>    <li>ethiopia</li>    <li>eritrea </li>  </ul> <li>tanzania</li> </ul> </body> </html>

Day4-Exercise4(To Demonstrate Ordered list dl and dt)

<!To  Demonstrate Ordered list dl and dt> <html> <body> <h2>ordered list</h2> <dl>    <dt>south africa</dt>    <dd>ethiopia</dd>    <dt>eritrea </dt>    <dd>tanzania</dd> </dl> </body> </html>

Day4-Exercise3(To Demonstrate Ordered list Using Roman)

<!To  Demonstrate Ordered list Using  Roman> <html> <body> <h2>ordered list</h2> <ol type="i">    <li>south africa</li>    <li>ethiopia</li>    <li>eritrea </li>    <li>tanzania</li> </ol> </body> </html>

Day4-Exercise2(To Demonstrate Ordered list Using small-alphabets)

<!To Demonstrate Ordered list Using   small-alphabets> <html> <body> <h2>ordered list</h2> <ol type="a">    <li>south africa</li>    <li>ethiopia</li>    <li>eritrea </li>    <li>tanzania</li> </ol> </body> </html>

Day4-Exercise1(To Demonstrate Ordered list Using alphabets)

<!To Demonstrate Ordered list Using   alphabets> <html> <body> <h2>ordered list</h2> <ol type="A">    <li>south africa</li>    <li>ethiopia</li>    <li>eritrea </li>    <li>tanzania</li> </ol> </body> </html>