Given the following XHTML page:
Create an embedded JavaScript function named getUserInfo that prompts the user with the following two questions after the XHTML page has loaded:
- What is your full name?
- How old are you?
The function should then build a string in the form of:
Hi, my name is FULL-NAME and I'm XX years old.
The string must then be inserted into the container div with id: content.
Note that your XHTML page must validate as 1.0 Strict - as such, make any needed additions to the XHTML code above.