-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
28 lines (25 loc) · 1.11 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php include './common/config.php' ?>
<?php include './view/homeHeader.php' ?>
<div class="container-fluid d-flex justify-content-center splashSection">
<div class="row">
<div class="col-lg-10 align-self-center text-center mx-auto">
<h2>Easy, Cashless, Convenient Beach Tags</h2>
<a role="button" class="btn btn-secondary btn-lg mt-4" href="#about">
Learn More
</a>
</div>
</div>
</div>
<div id="about" class="container my-5">
<div class="row">
<div class="col-md-7">
<h2>About Marka</h2>
<p class="lead">Marka is a mobile application that eliminates the inconvenience of cash-based, in-person transactions that are currently needed to sell beach access tags in the state of New Jersey.</p>
<p>The Marka app can be downloaded onto mobile phones, providing beachgoers with an opportunity to purchase digital beach passes prior to their visit to participating beaches.</p>
</div>
<div class="col-md-5">
<img class="img-fluid mx-auto" src="./img/nj-tag-locations.png" alt="Marka tags locations">
</div>
</div>
</div>
<?php include './view/homeFooter.php' ?>