I'm trying to validate the following XML but I'm unable to, can you please spot the error?
<!-- menu: its a menu -->
<menu id="Welcome">
<!--audio: file to play -->
<audio src="D:\Telephony\VOXs\Welcome.vox" />
</menu>
<!-- form: its a menu -->
<menu id="LanguageSelection">
<audio src="D:\Telephony\VOXs\LanguageSelection.vox" />
<input timeout="5" max_timeout="2" max_invalid_input="2" valid_dtmfs="1, 2">
<!-- noinput: if timeout occurred, execute this -->
<noinput>
<audio src="D:\Telephony\VOXs\Timeout.vox" />
</noinput>
<!-- nomatch: if wrong dtmf given, following will execute -->
<nomatch>
<audio src="D:\Telephony\VOXs\InvalidInput.vox" />
</nomatch>
<switch>
<dtmf-1>
<audio src="D:\Telephony\VOXs\EnglishSelected.vox" />
</dtmf-1>
<dtmf-2>
<audio src="D:\Telephony\VOXs\UrduSelected.vox" />
</dtmf-2>
</switch>
</input>
</menu>
<menu id="MainMenu">
<audio src="D:\Telephony\VOXs\MainMenu.vox" />
<input timeout="5" max_timeout="2" max_invalid_input="2" valid_dtmfs="1, 2">
<!-- noinput: if timeout occurred, execute this -->
<noinput>
<audio src="D:\Telephony\VOXs\Timeout.vox" />
</noinput>
<!-- nomatch: if wrong dtmf given, following will execute -->
<nomatch>
<audio src="D:\Telephony\VOXs\InvalidInput.vox"/>
</nomatch>
<switch>
<dtmf-1>
<goto menu="InformationMenu" />
</dtmf-1>
<dtmf-2>
<goto menu="SupportMenu" />
</dtmf-2>
</switch>
</input>
</menu>
I get the following error while validating with Validome.org.
Error: The markup in the document following the root element must be well-formed.
Error Position: <menu id="LanguageSelection">