Which choice is valid markup for a <head> element?
<head>
<head><title>Page Title</title> <img src="favicon.icon" alt=""></head>
<head class="Page Section Information" id="head"><title>Page Title</title></head>
<head><title>Page Title</title><address>[email protected]</address></head> The <head> HTML element contains machine-readable information (metadata) about the document, like its title.The <data> tag is used to add a machine-readable translation of a given content. Source 1/ Source 2
<head><title>Page Title</title><address>[email protected]</address></head>
The <head> HTML element contains machine-readable information (metadata) about the document, like its title.The <data> tag is used to add a machine-readable translation of a given content.
<head><title>Page Title</title> <data value="email">[email protected]</data></head>