-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
112 lines (108 loc) · 4.03 KB
/
about.html
File metadata and controls
112 lines (108 loc) · 4.03 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="" />
<meta name="author" content="Claire Webber" />
<title>About - Claire Webber Design</title>
<!-- Bootstrap core CSS -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"
></script>
<!-- Custom CSS -->
<link href="./assets/css/main.css" rel="stylesheet" />
<link rel="stylesheet" href="https://use.typekit.net/scr7oim.css" />
</head>
<body class="offset-xl-1 ps-1 pb-5 ps-xl-0">
<header>
<nav class="navbar navbar-expand">
<img
src=" ./assets/img/Dogs-04 1.svg"
alt="claire webber design"
class="navbar-brand"
/>
<ul class="navbar-nav">
<li class="nav-item px-sm-4">
<a class="nav-link" href="./index"><u>Home</u></a>
</li>
<li class="nav-item px-sm-4">
<a class="nav-link" href="./portfolio"><u>Portfolio</u></a>
</li>
<li class="nav-item px-sm-4">
<a class="nav-link" href="./about"><u>About</u></a>
</li>
</ul>
</nav>
</header>
<main class="container-fluid">
<div class="row pt-5">
<div class="row pb-5">
<h1>About</h1>
</div>
<div class="row pt-5">
<div class="col-12 col-md-1 h2-col">
<h2 class="text-xl-end">Accessibility</h2>
</div>
<div class="col-12 col-sm-9 col-md-8 col-lg-6 col-xl-5 col-xxl-4">
<p>
With over 8 years of experience working in accessibility, I love
working with design teams in particular to create inclusive
experiences. You’ll find me training designers, reviewing design
systems, doing design reviews, and coaching teams.
</p>
</div>
</div>
<div class="row pt-5">
<div class="col-12 col-md-1 h2-col">
<h2 class="text-xl-end">Design</h2>
</div>
<div class="col-12 col-sm-9 col-md-8 col-lg-6 col-xl-5 col-xxl-4">
<p>
In my day-to-day role I am doing a mix of web design and graphic
design – creating anything from social media graphics to print
assets for events. I am also part of the organizing team for
DDDAdelaide where I tackle all design related tasks. In my free
time I love to work on photography and illustration. I
particularly enjoying applying my design related skills to crafts
and hobbies including large scale embroidery projects.
</p>
</div>
</div>
<div class="row pt-5">
<div class="col-12 col-md-1 h2-col">
<h2 class="text-xl-end">Contact me</h2>
</div>
<div class="col-12 col-sm-9 col-md-8 col-lg-6 col-xl-5 col-xxl-4">
<p>Please reach out for</p>
<ul>
<li>Speaking at meetups, events, brown bags or conferences</li>
<li>Small-scale design projects</li>
<li>Coaching</li>
<li>Or to catch up for a coffee!</li>
</ul>
<p>
Email:
<a href="mailto:contact@clairewebber.design"
>contact@clairewebber.design</a
>
<br />
LinkedIn:
<a href="https://www.linkedin.com/in/claire--webber"
>linkedin.com/in/claire--webber</a
>
</p>
</div>
</div>
</div>
</main>
</body>
</html>