Il codice di errore che mi dà è questo:
# Error Line 29, Column 9: end tag for "select" which is not finished.
</select></p>
✉
Most likely, You nested tags and closed them in the wrong order. For example
[i]...</p> is not acceptable, as [i] must be closed before
. Acceptable nesting is:
...</p>
Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists (ul, ol, dl) require list items (li, or dt, dd), and so on.
come è possibile spostare il codice in html?