Is it possible to have two elements with different types – such as a div and an ul with the same id in HTML?
Here is an example of HTML code:
<div id="articleOptions">
<ul id="articleOptions">
<li>Share</li>
<li>View</li>
<li>Read Later</li>
</ul>
</div>
Would this be considered valid HTML code?