-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
57 lines (54 loc) · 2.98 KB
/
Copy pathabout.html
File metadata and controls
57 lines (54 loc) · 2.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - Jing Hao</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="styles/main.css">
<style>
/* Copy the styles from index.html */
</style>
</head>
<body>
<div class="grid-container">
<header>
<h1>About Me</h1>
</header>
<section>
<h2>Moodboard: Jing's Integration Odyssey</h2>
<div class="moodboard" style="display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;">
<img src="https://images.unsplash.com/photo-1465101046530-73398c7f28ca?auto=format&fit=crop&w=400&q=80" alt="Labyrinth" style="width:180px; border-radius:8px;" title="Labyrinth of APIs">
<img src="https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=400&q=80" alt="Dragon" style="width:180px; border-radius:8px;" title="Battling dragons (errors)">
<img src="https://images.unsplash.com/photo-1519125323398-675f0ddb6308?auto=format&fit=crop&w=400&q=80" alt="Night coding" style="width:180px; border-radius:8px;" title="Late night debugging">
<img src="https://images.unsplash.com/photo-1464983953574-0892a716854b?auto=format&fit=crop&w=400&q=80" alt="Mountain summit" style="width:180px; border-radius:8px;" title="Victory after challenge">
<img src="https://images.unsplash.com/photo-1465101178521-c1a9136a3b99?auto=format&fit=crop&w=400&q=80" alt="Teamwork" style="width:180px; border-radius:8px;" title="Alliances and teamwork">
<img src="https://images.unsplash.com/photo-1465101046530-73398c7f28ca?auto=format&fit=crop&w=400&q=80" alt="Maze" style="width:180px; border-radius:8px;" title="Complex integration maze">
</div>
<p style="text-align:center; margin-top:1em; color:#555;">A visual journey through the challenges and triumphs of Klarna integration.</p>
</section>
<section>
<h2>Skills</h2>
<p>List of technical skills and expertise goes here.</p>
</section>
</div>
<nav class="bottom-nav">
<div class="nav-links">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="klarna-tools/klarna-tools.html">Klarna Tools</a>
</div>
<div class="social-links">
<a href="https://github.com/thejinghao" target="_blank" title="GitHub">
<i class="fab fa-github"></i>
</a>
<a href="https://linkedin.com/in/thejinghao" target="_blank" title="LinkedIn">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://thejinghao.github.io" target="_blank" title="Portfolio">
<i class="fas fa-globe"></i>
</a>
</div>
</nav>
</body>
</html>