Show Output
<!DOCTYPE html> <html lang="en"> <head> <title>Example of HTML div tag</title> <style type="text/css"> .welcome-box{ background:#cccccc; border:1px solid #333333; } </style> </head> <body> <div class="welcome-box"> <h1>Welcome</h1> <p>Hi, welcome to our website.</p> </div> <p><strong>Note:</strong> To learn more about style rules please study tutorials on <a href="#">CSS</a>.</p> </body> </html>