Search


Heading With List

Purpose

Use a heading followed by a list when multiple links need to be displayed. In the menu panel, this is rendered as a <details> element, with the heading as a summary.

Code

<footer role="contentinfo" id="wb-info" class="visible-sm visible-md visible-lg wb-navcurr">
	<div class="container">
		<nav role="navigation" class="row">
			<h2>Example Footer</h2>
			<section class="col-sm-4">
				<h3>Heading 1</h3>
				<ul class="list-unstyled">
					<li><a href="#">List Element 1.1</a></li>
					<li><a href="#">List Element 1.2</a></li>
				</ul>
			</section>
			<section class="col-sm-4">
				<h3>Heading 2</h3>
				<ul class="list-unstyled">
					<li><a href="#">List Element 2.1</a></li>
					<li><a href="#">List Element 2.2</a></li>
				</ul>
			</section>
			<section class="col-sm-4">
				<h3>Heading 3</h3>
				<ul class="list-unstyled">
					<li><a href="#">List Element 3.1</a></li>
					<li><a href="#">List Element 3.2</a></li>
				</ul>
			</section>
		</nav>
	</div>
</footer>

Page details

Date modified: