Every Html-Element in Selenium is called a WebElement. For example, a p tag would be a WebElement, an a tag would be a WebElement, etc. Consider the following html Structure:
<a id="link1" href="https://www.google.com">google</a>
<p class="p1">
This...