how you insert padding for left right bottom top css code example
Example 1: css padding
padding: 5px 10px 15px; //top then left & right then bottom
Example 2: html padding
<h2 style="padding-top: 20px; padding-right: 20px; padding-bottom: 20px; padding-left: 20px">London</h2>