Created
May 19, 2015 02:12
-
-
Save AndrewEddy/caae8e10b24f39ad2878 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>List Page</title> | |
| </head> | |
| <body> | |
| <h1>Lets Play with Lists</h1> | |
| <!-- Unordered List --> | |
| <ul> | |
| <li>List Item 1</li> | |
| <li>List Item 2</li> | |
| <li></li> | |
| </ul> | |
| <!-- Ordered List --> | |
| <ol> | |
| <li>List Item 1</li> | |
| <li>List Item 2</li> | |
| <li>List Item 3</li> | |
| </ol> | |
| <!-- Description List --> | |
| <dl> | |
| <dt>Average Number</dt> | |
| <dd>99.7256</dd> | |
| <ul> | |
| <li>Apple</li> | |
| <li>Orange</li> | |
| </ul> | |
| <dt>Average Height</dt> | |
| <dd>5ft 9in</dd> | |
| </dl> | |
| </body> | |
| </html> |
good
Good
great
great
Set bhaii
Nice
done sir
ok
great
ok
ok
nice
DONE
ok
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
👍