KOD
<!DOCTYPE html>
<html>
<body>
<center><input style="border-radius: 20px; border-color: green; background: #f0f0f0; padding-left: 20px;" type="text" value="TR0 0000 0000 0000 0000" id="myInput">
<p></p>
<button style="border-radius: 20px; border-color: #0ae955; color: #0ae955;" onclick="myFunction()">Ziraat İban Kopyala</button></center>
<script>
function myFunction() {
var copyText = document.getElementById("myInput");
copyText.select();
copyText.setSelectionRange(0, 99999)
document.execCommand("copy");
alert("İban başarıyla kopyalandı: " + copyText.value);
}
</script>
</body>
</html>