-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (57 loc) · 1.81 KB
/
index.html
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" />
<link rel="stylesheet" href="style.css" />
<!-- Fontawesome Stylesheet -->
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v6.1.2/css/all.css"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&family=Roboto:wght@400;500&display=swap"
rel="stylesheet"
/>
<title>My Profile</title>
</head>
<body>
<div class="container">
<div class="card" id="intro">
<h1>Hello, I'm Kathleen! 🙂</h1>
<img
src="images/profile_picture.jpg"
class="img-circle"
width="100px"
alt="Kathleen Koh"
/>
<p>
I love board games 🎲, theatre 🎭 and hiking 🗻 ! <br />Ex-Product
Manager and student at Le Wagon learning how to code. <br />Aspiring
to build products that people enjoy. 🌈
</p>
<p>Previous Product Managed:</p>
<a href="https://www.isomer.gov.sg/" target="_blank" class="green-button">Click here</a>
</div>
<div class="card">
<h2>Follow me on:</h2>
<ul class="icons">
<li>
<a href="https://github.com/kathleenkhy" target="_blank"
><i class="fa-brands fa-github"></i
></a>
</li>
<li>
<a
href="https://www.linkedin.com/in/kathleenkohhuiying/"
target="_blank"
><i class="fab fa-linkedin-in"></i
></a>
</li>
</ul>
</div>
</div>
</body>
</html>