Basic HTML Elements in Developer Tools
Basic HTML Elements in Developer Tools
Google Chrome Developer Tools (also called Chrome DevTools) are an incredibly useful resource. They can help you optimise a specific web page, review the page loading speed, find where specific assets are hosted, and even temporarily change elements of the web page directly in the browser in real time. Although it may seem like trying to fly a plane for the first time with so many tabs, sections, and search bars, it’s simpler to navigate it than you think. You don’t have to be an experienced developer to make use of developer tools, all you need is patience and a browser (we prefer Google Chrome!).
In part two of our series dedicated to helping you streamline your knowledge of DevTools, we have compiled a list of the most common and often used HTML elements that you should know, as you'll no doubt end up needing to search for them using the Elements tab at some point.
Tags vs Elements
Before we jump into the nitty-gritty, one important aspect to first understand is the difference between tags and elements (not to be confused with the Elements tab). HTML tags are the markup used to define the start and end of an element, while an HTML element is everything that sits in between the opening and closing tags (attributes, values, content, even the tags themselves).
Tags begin with the < bracket and end with the > bracket and are closed with a forward slash /.

Head
The
section of any HTML document is mandatory and sits right at the top, containing important information needed for the page to be displayed correctly, but despite that, it's content that you never see in the browser window, on the page.It contains tags to define the page title that you see in the browser tab, various metadata, links to external CSS or JavaScript files (though the latter are recommended to be put at the bottom of the section), and any in-line CSS code.
Body
Within an HTML document, you can only have one
section, and structurally, it comes immediately after the header tag closes. Incidentally, its closing tag will be the last thing before the