x
1
2
<html>
3
<body>
4
5
<img src="https://www.closetag.com/images/photo1.jpg" alt="flower" width="150" height="150">
6
<img src="https://www.closetag.com/images/photo2.jpg" alt="flower" width="150" height="150">
7
<img src="https://www.closetag.com/images/photo3.jpg" alt="Smiley face" width="150" height="150">
8
9
<p>Click the button to add a black dotted border of the Three image in the document</p>
10
<button type="button" id="button">Try It</button>
11
12
<script>
13
let button = document.getElementById('button');
14
let images = document.images[2];
15
button.addEventListener("click",()=>{
16
images.style.border = "2px dotted red";
17
});
18
</script>
19
20
</body>
21
</html>