TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <style> p { border: 1px solid black; margin: 10px; width: 80px; } #p1 { padding-bottom: 5%; } #p2 { padding-bottom: 10%; } #p3 { padding-bottom: 15%; } #p4 { padding-bottom: 20%; } #p5 { padding-bottom: 25%; } </style> </head> <body> <p id="p1">Hello World</p> <p id="p2">Hello World</p> <p id="p3">Hello World</p> <p id="p4">Hello World</p> <p id="p5">Hello World</p> </body> </html>