PNLdev
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
En
English
فارسی
En
English
فارسی
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
Run
<!DOCTYPE html> <html> <head> <style> .myDiv { border: 5px inset yellow; background-color: lightgreen; text-align: center; } </style> </head> <body> <h1>div tag example</h1> <div class="myDiv"> <h2>this is my heading in this div.</h2> <p>This is my paragraph in this div.</p> </div> </body> </html>