JSFiddle - React, Tailwind, and code Playground
HTML
<body>
<form>
Quiz name: <input type="text" name="firstname"><br>
Question name: <input type="text" name="lastname">
</form>
Choice<input type="text" name="textBox0"><input type="button" value="add" onclick="addInput()"/>
<span id="responce"></span>
<script>
var countBox =1;
var boxName = 0;
function addInput()
{
var boxName="textBox"+countBox;
document.getElementById('responce').innerHTML+='<br/>Choice<input type="text" id="'+boxName+'" /><input type="button" value="add" onclick="addInput()"/><input type="button" value="delete" onclick="deleteInput()"/>';
countBox += 1;
}
function deleteInput()
{
document.getElementById('responce').innerHTML+='choice';
}
</script>
</body>