The browser will render an image as it is. To add the black border to the image, add the border attribute of the
element.
snippet
<html>
<head></head>
<body>
No Border
<img src="logo.jpg">
Image with border
<img src="logo.jpg" border="2">
</body>
</html>
Output
No Border
Image with border