If I have a page with an <h1> heading and a long paragraph, is it ok to write the paragraph (see below - with the h tags mixed with broken p tags to make up the whole block of text) and just style it so it looks all the same so that I get the benefit of using <h2> and <h3> tags?
I'm aware this is not the 'proper' use of the H tags as they're meant to be headings but can I use them like this, as the site isn't built using multiple headings on the same page?
<h1>Red shoes</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus id dui id mi
consectetur tincidunt. Mauris at sem non urna congue eleifend sed quis nulla. Aenean nisl
porta eget auctor vel, semper eget massa.</p> <h2>Red shoes</h2> <p>Lorem ipsum dolor
sit amet, consectetur adipiscing elit. Phasellus id dui id mi consectetur tincidunt.
Mauris at sem non urna congue eleifend sed quis nulla. Aenean nisl porta eget auctor vel,
semper eget massa.</p> <h3>red shoes</h3> <p>Lorem ipsum.</p>
(please ignore over optimization this is just for illustrative purposes)
