HTML is a markup language. More specifically, it is a set of standards that web pages should follow in order to display content and make it more logical to the end-user, bots, etc. All content is supposed to be contained within the <html> tag in order to follow standards. However, a browser is more worried about displaying content, so they will display your elements no matter if they are within the element or not, just because they are there.
The main thing you need to worry about is actually following standards and making sure your elements are where they are allowed. Putting things in random places just to see if they still work will likely result in them, well, working. But just because things work doesn't mean it is semantically correct and follows standards.