क्या यह एकाधिक <header>
और HTML 5 में उपयोग करने की अनुमति देता है और ठीक है, तो हाँ, तो क्या यह अर्थपूर्ण रूप से गलत नहीं है और स्क्रीन रीडर उपयोगकर्ताओं को भ्रमित कर देगा?एकाधिक <header> और <footer> एक HTML5 दस्तावेज़ में
मैं कई साइट
<body class="home">
<header class="hd1">
<hgroup>
<h1>HTML5 Documnet</h1>
<h2>tagline</h2>
</hgroup>
</header><!-- .hd1 -->
<div class="main">
<section class="hs1">
<header>
<h1>This is a Page Sub Title</h1>
</header>
<p>Some content...</p>
<h2>Demonstrating EM and STRONG</h2>
<p><strong>This text will have more importance (SEO-wise and contextually)</strong></p>
<footer>
<p>Author: <cite>Louis Lazaris</cite></p>
</footer>
</section>
</div><!-- .main -->
<footer class="f1">
<p>copyright © year</p>
</footer><!-- .f1 -->
</body>