TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <style> li.highlight + li { font-weight: bold; } </style> </head> <body> <ul> <li class="highlight">Highlighted Item</li> <li>This item is styled.</li> <li>This item is not styled.</li> </ul> </body> </html>