DEV Community

Discussion on: A Beginners Guide to HTML

Collapse
 
ludamillion profile image
Luke Inglis

One thing to add is that it's worth noting that some elements, things defined by tags, are structurally important to a page. This is particularly important for accessibility and technology such as screen readers for non-sighted users.

For example with headers, a single HTML page should only ever have a single h1 tag. It should be considered a 'top level heading'.

Learning accessibility best practices at the same time as you learn the other basics of HTML and web dev in general is much easier than playing catch up later on.