-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (64 loc) · 2.46 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
58
59
60
61
62
63
64
65
66
67
68
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Kylie Sy</title>
<link rel="stylesheet" href="styles.css">
<script src="https://kit.fontawesome.com/d11ed662d5.js" crossorigin="anonymous"></script>
</head>
<body>
<header class="greeting-container">
<img class="logo" src="/images/kylie-logo-bg.png" alt="kylie website logo"/>
<h1>Hi! I'm Kylie.</h1>
<p>I’m a Software Developer who enjoys building user interfaces and thinking about user experience. I like working across the stack, but Frontend Development has a special place for me. I plan to share with you some of the things I’ve learnt throughout my journey. Stay tuned.</p>
</header>
<div class="section">
<h2>
Articles
</h2>
<ul>
<li>
<a href="https://www.thoughtworks.com/content/dam/thoughtworks/documents/e-book/tw_ebook_accessibility_handbook_v4.pdf">
A practitioner's accessibility handbook (PDF)</a>, co-author
</li>
<li>
<a href="https://www.thoughtworks.com/insights/blog/careers-at-thoughtworks/five-ways-i-grew-my-career-as-a-quiet-person">
Five ways I grew my career as a quiet person
</a>
</li>
</ul>
</div>
<div class="section">
<h2>Presentations</h2>
<ul>
<li>
Testing Web Accessibility in React ( <a href="https://github.com/kksy/testing-a11y-react">resources</a> ), at <a href="https://www.meetup.com/hamburg-react-js-meetup/events/295826630/">Hamburg React.js Meetup</a>
</li>
</ul>
</div>
<div class="section">
<h2>Follow me on</h2>
<ul class="socialmedia">
<li>
<a href="https://www.linkedin.com/in/kyliesy/">
<i class="fab fa-linkedin" aria-hidden="true"></i>
<span class="visually-hidden">My Linkedin page</span>
</a>
</li>
<li>
<a href="https://github.com/kksy">
<i class="fab fa-github-square" aria-hidden="true"></i>
<span class="visually-hidden">My Github page</span>
</a>
</li>
<li>
<a href="https://www.youtube.com/channel/UCtlfvm5Akd6mt6_hVhReYcw">
<i class="fab fa-youtube" aria-hidden="true"></i>
<span class="visually-hidden">My Youtube page</span>
</a>
</li>
</ul>
</div>
</body>
</html>