About section - section
This section layout represents the "about section" of the index.html file.Use it to describe your business, or your main activity.

CODE
Here is the HTML code to obtain it. Embed it within the main
tag with class page-main
. Replace texts and buttons by yours.
You can duplicate this section as much as you want. Just note that you can not use the data-section
value twice for a different section within an HTML page, as it will be the id
of the section later. You have to use different value for the duplicated section.
HTML Section - About
<div class="section section-description fp-auto-height-responsive " data-section="about">
<!-- Begin of section wrapper -->
<div class="section-wrapper">
<!-- title -->
<div class="section-title text-center">
<h5 class="title-bg">About</h5>
<h2 class="display-4 display-title">Modern Website for your business</h2>
</div>
<!-- content -->
<div class="section-content reduced anim text-center">
<!-- title and description -->
<div class="title-desc">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris aliquet malesuada feugiat. Curabitur fermentum
bibendum nulla, non dictum ipsum tincidunt non. Quisque convallis pharetra tempor. Donec id pretium leo.
Pellentesque luctus massa non elit viverra pellentesque. Cras vitae neque molestie, rhoncus ipsum sit
amet, lobortis dui. Fusce in urna sem.</p>
</div>
</div>
<!-- Arrows scroll down/up -->
<footer class="section-footer scrolldown">
<a class="down">
<span class="icon"></span>
<span class="txt">Our Services</span>
</a>
</footer>
</div>
<!-- End of section wrapper -->
</div>