Ciao a tutti, volevo scrivere all'interno di un canvas i valori di 2 campi input. Ad esempio se un utente scrive nel primo campo mare e nel secondo sole, vorrei che comparisse nel canvas la scritta maresole. Io ho iniziato così a scrivere il codice, ma ho bisogno di qualche spunto, idee? Grazie a tutti.
<html>
<head>
<!DOCTYPE html>
<meta charset="UTF-8>
</style>
</head>
<body>
<input id = "test" value = "" /> <br>
<input id = "test2" value = "" />
<p ><button onclick="test">Vai</button></p>
<p>
<canvas id="canv" width="300"> </p>
<script>
var canvas = document.getElementById("canv").getContex ('2d');
ctx.fillText("document.getElementById("test", 10, 80);
</script>
</canvas>
</body>
</html>