TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <style> h1, p, a, pre { display: block; border: 1px solid; } h1 { padding-bottom: 25px; } p { padding-bottom: 25px; } a { padding-bottom: 25px; } span { padding-bottom: 25px; background-color: #EEE; } pre { padding-bottom: 25px; } </style> </head> <body> <h1>Heading 1</h1> <p>A paragraph.</p> <a href="#">Anchor Text</a> <p>A paragraph with a <span>span text</span>.</p> <pre>pre hello world</pre> </body> </html>