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.
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
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
h1tag. 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.