-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
73 lines (59 loc) · 2.46 KB
/
Copy pathabout.html
File metadata and controls
73 lines (59 loc) · 2.46 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!--
About Me Page
Author: Josh Lollis
Date: December 3, 2024
CPSC 349 Portfolio Final Project
Personal profile page with biography and professional resume sections
Updated: Dec 22, 2025
-->
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Standard meta -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About | Portfolio</title>
<!-- This style prevents flash of unstyled content (FOUC) -->
<style id="anti-fouc">html{visibility:hidden}</style>
<!-- Inject shared head links (fonts, Font Awesome, tokens, base, desktop/mobile) -->
<script src="/js/head.js"></script>
<!-- Page-specific CSS (if any) -->
<!-- <link rel="stylesheet" href="/css/some-page-only.css"> -->
</head>
<body>
<!-- Header injection point -->
<div id="header-placeholder"></div>
<main>
<div class="content-container">
<h1 class="snug-header funnel-display-header">About Me</h1>
<!-- Profile section -->
<div id="pfp-placeholder">
<!-- Profile picture with gradient border -->
<div class="pfp-border hover-scale">
<img src="assets/images/pfp.png" alt="Profile Picture"
class="pfp">
</div>
</div>
<div id="bio-placeholder"></div>
<!-- Resume sections -->
<section class="section-level-1">
<!-- Software Engineer Resume PDF viewer -->
<h2 class="funnel-display-header">Software Engineer
Resume</h2>
<div class="pdf-container">
<object data="/assets/pdf/Joshua-Lollis_Software-Engineer-Resume.pdf"
type="application/pdf">
<p>Unable to display PDF file. <a
href="/assets/pdf/Joshua-Lollis_Software-Engineer-Resume.pdf"
class="hover-transform-left">Download</a>
instead.</p>
</object>
</div>
</section>
</div>
</main>
<!-- Footer injection point -->
<div id="footer-placeholder"></div>
<script src="/scripts.js"></script>
</body>
</html>