cara membuat tombol muncul di hover

.btn {
    display: none;
}

img:hover + .btn, .btn:hover {
    display: inline-block;
}
Coder.html