-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
35 lines (30 loc) · 1.1 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
29
30
31
32
33
34
35
<?php
$pageTitle = "Othello Deemi Portfolio";
include ('inc/resources/head.php');
include ('inc/layout/sidebar.php');
?>
<!-- Main Sections -->
<main class="main-sections flex">
<!-- -------------------------------- Hero --------------------------------- -->
<!-- back to top -->
<a href="#home" id="top-btn" class="flex hidden"></a>
<header id="home" class="hero">
<div class="inner hero-inner flex">
<!-- Title -->
<h1 class="display-2 heading text-center">
<span class="display-2--description">My Name is</span>
<span class="display-2--title fw-bold">Othello Deemi</span>
<!-- typewriter -->
<span id="typewriter" class="display-2--subtitle"></span>
</h1>
<!-- Scroll down buton -->
<a href="#portfolio">
<span></span>
</a>
</div>
</header>
<?php include ('inc/layout/portfolio.php');?>
<?php include ('inc/layout/contacts.php');?>
</main>
<!-- JS & end body -->
<?php include ('inc/resources/end-body.php');?>