user60740
0
Q:

html section tag

Section tag defines the section of documents such as chapters, headers, footers
or any other sections. The section tag divides the content into section and 
subsections. ... Section tag grouped the generic block of related contents.
3
<section>
  <h1>Heading</h1>
  <p>Bunch of awesome content</p>
</section>
1
<section id="header"> Name of section
	<div class="container">
		<div class="row">
			<div class="col-xs-12"></div>
		</div>
	</div> 
</section>

<section id="main-content"> Name of section
	<div class="container">
		<div class="row">
			<div class="col-xs-6"></div>
			<div class="col-xs-6"></div>
		</div>
	</div> 
</section>

<section id="footer"> Name of section
	<div class="container-fluid">
		<div class="row">
			<div class="col-xs-4"></div>
			<div class="col-xs-4"></div>
			<div class="col-xs-4"></div>
		</div>
	</div> 
</section>
0
<html>
<head></head>
<body>
    <header></header>
    <section>
        <h1>ffffff</h1>
        <div>
            <span></span>
        </div>
        <div></div>
    </section>
    <footer></footer>
</body>
</html>
0

New to Communities?

Join the community