-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
50 lines (39 loc) · 1.32 KB
/
index.php
File metadata and controls
50 lines (39 loc) · 1.32 KB
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
41
42
43
44
45
46
47
48
49
50
<?php
$current_page = 'home';
$page_title = 'Home';
require 'header.php';
?>
<!-- PAGE 1 · Home -->
<div class="hero hero-home">
<!-- LEFT: text content -->
<div class="home-content">
<!-- 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" style="margin:1.25rem 0;"></div>
<p class="subtitle" style="margin:0 0 2rem;text-align:left;">
Welcome to my <em style="color:var(--accent);font-style:italic;">portfolio</em>
where I showcase my skills, experience, and professional journey.
</p>
<div class="home-btns">
<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>
<!-- RIGHT: hero photo -->
<div class="home-photo-wrap">
<img src="images/Arnold-header.jpeg" alt="Arnold Abigail" class="home-photo" />
</div>
</div>
<?php require 'footer.php'; ?>