The border is essentially the visible edge, or perimeter of a given element. Borders can be given different styles, colors and widths to acheive te coders vision. Border properties look like: border-width, border-color, and border-style.
Padding is like the margin, only instead of creating a space between the element and other external elements, padding creates a space between the border of the element, and the contents inside of it. this could be text, images, anything inside the element. the properties for Padding is very similar to margin's properties, looking like: padding-top, padding-right, padding-bottom, and padding-left.
In summary, the margin is in charge of the space between the element and other elements, the border is in charge of an elements visible edge or perimeter, and the padding is in charge of the space between the elements border and the content.