Para no permitir arrastras datos a un campo, vamos a utilizar el atributo draggable. El verbo drag en inglés significa «arrastrar», por lo que draggable lo traduciremos como elemento «arrastrable».
- true (Sí permitimos arrastrar)
- false (No permitimos arrastrar)
- auto (Por defecto, sí permitimos arrastrar)
<!DOCTYPE HTML>
<html>
    <head>
        <style>
        input{
        height:150px;
        width:600px;
        font-size:18pt;
        background-color:#00a5e4;
        }
        </style>
    </head>
    <body>
        <input type="text"/>
        <br>
        <a href="javascript:alert('Lacodigoteca.com')" draggable="false">Lacodigoteca.com</a>
    </body>
</html>
 https://www.w3schools.com/html/html5_draganddrop.asp 
 
				