0
Iwant border in This img
Border in This imge
4 Answers
0
This is my code
<html>
<head>
<title> my images</title>
</head>
<body>
<img src="1.jpg" alt="my image" hight="33" width="33">
<img src="1.jpg" alt="my image" hight="33" width="33">
<img src="1.jpg" alt="my image" hight="33" width="33"> <br>
<img src="1.jpg" alt="my image" hight="33" width="33">
<img src="1.jpg" alt="my image" hight="33" width="33">
<img src="1.jpg" alt="my image" hight="33" width="33">
</body>
</html>
0
If you want border on every image you shoud use the css property border. If you want border around all images, you should wrap the images inside a div and use the border property on it.
Here is a simple example based on your code:
https://code.sololearn.com/WIREEu2R0Te2/?ref=app
0
Thank you very much gabriel
0
Welcome