-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
40 lines (32 loc) · 976 Bytes
/
index.php
File metadata and controls
40 lines (32 loc) · 976 Bytes
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
36
37
38
39
40
<?php
$current_page = 'home';
$page_title = 'Home';
require 'header.php';
?>
<!-- PAGE 1 · Home -->
<div class="hero">
<!-- secondary nav row -->
<div class="sub-nav">
<span>portfolio</span>
<span>✦</span>
<span>resume</span>
<span>✦</span>
<span>works</span>
</div>
<!-- Big layered name -->
<div class="home-title-wrap">
<span class="home-title-top">ABIGAIL</span>
<span class="home-title-script">Portfolio</span>
<span class="home-title-ghost">ARNOLD</span>
</div>
<div class="divider"></div>
<p class="subtitle">
Welcome to my <em style="color:var(--accent);font-style:italic;">portfolio</em>
where I showcase my skills, experience, and professional journey.
</p>
<div>
<a class="btn btn-primary" href="about.php">About Me</a>
<a class="btn btn-ghost" href="contact.php">Get In Touch</a>
</div>
</div>
<?php require 'footer.php'; ?>