What about interpolation

How to embed a tag when you use

interpolation list.innerHTML = ${</br>} ${name.value} ${surName.value} ${age.value};

Could you give us more context?

A tag is not a variable (unless JSX), so you’d do:

list.innerHTML = `</br> ${name.value} ${surName.value} ${age.value}`;