TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <style> div.box { border: 1px solid black; padding: 10px; } </style> </head> <body> <div class="box">This is a styled box.</div> <div>This div is not styled.</div> </body> </html>