-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
23 lines (20 loc) · 753 Bytes
/
index.php
File metadata and controls
23 lines (20 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
$title = "Home";
require_once __DIR__ . '/helpers/session_helper.php';
include __DIR__ . '/views/layouts/header.php';
?>
<main>
<section id="hero">
<div class="hero-container">
<div class="hero-left">
<h1>Build every possibility for you </h1>
<p>Discover and develop your potential skills.</p>
<a href="./views/course/" class="btn-3d"><span>View Courses</span></a>
</div>
<div class="hero-right">
<img src="./public/images/hero.jpg" alt="" draggable="false">
</div>
</div>
</section>
</main>
<?php require_once __DIR__ . '/views/layouts/footer.php'; ?>