TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <style> ul li { font-weight: bold; } </style> </head> <body> <ul> <li>Item 1</li> <li>Item 2</li> </ul> <ol> <li>This item is in an ordered list.</li> </ol> </body> </html>