TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <style> .highlight { background-color: yellow; font-weight: bold; } </style> </head> <body> <p class="highlight">This is highlighted text.</p> <span class="highlight">This span is also highlighted.</span> </body> </html>