<input type="number" id="count" value="0"/>
<button onclick="calcCurrency()">Узнать курс</button>
function calcCurrency(){
event.preventDefault();
window.open('https://www.site.com/convert/eth/usd/'+document.querySelector('#count').value, '_blank');
}