-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
63 lines (63 loc) · 2.82 KB
/
about.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
<!doctype html>
<head>
<title>About Dan</title>
<link rel="icon" href="img/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="./main.css">
</head>
<body>
<header class="titlebar content-box">
<div class="main-link-container">
<a class="main-link" href="/">
<div id="main-title">Dan Clark</div>
<div id="secondary-title">Web Platform Engineer</div>
</a>
</div>
<div id="img-container" role="img" alt="Profile image of Dan" title="Photo Credit: Julie Clark :)"></div>
<nav>
<a href="/">Home</a>
<a href="/about.html" class="current">About</a>
</nav>
</header>
<div class="titlebar-divider"></div>
<div id="main" class="content-box">
<div>
Hi!
</div>
<div>
I'm Dan, an engineer at Microsoft Edge working on web standards and the web platform.
</div>
<div>
The web is the most important, exciting, and quickly-evolving development platform
that exists today, and I'm exploring ways to make it better for users and developers.
</div>
<div>
I've worked to help bring a number of web standards to life including
<a href="https://w3c.github.io/edit-context/">Edit Context</a>, the
<a href="https://developer.mozilla.org/en-US/docs/Web/API/CSS_Custom_Highlight_API">CSS Custom Highlight API</a>,
<a href="https://github.com/tc39/proposal-import-attributes">import attributes</a>,
<a href="https://web.dev/articles/css-module-scripts">CSS module scripts</a>, and
<a href="https://github.com/tc39/proposal-json-modules">JSON module scripts</a>.
</div>
<div>
This journey has involved contributions in several web standards organizations: the
<a href="https://wiki.csswg.org/">CSS Working Group</a>,
the <a href="https://www.w3.org/groups/wg/webediting/">Web Editing Working Group</a>, the
<a href="https://open-ui.org/">OpenUI Community Group</a>, <a href="https://tc39.es/">TC39</a>,
and the <a href="https://whatwg.org/">WHATWG</a>.
</div>
<div>
During this time I've been an active contributor to the <a href="https://www.chromium.org/Home/">Chromium Project</a>,
with <a href="https://chromium-review.googlesource.com/q/owner:daniec+status:merged">commits</a> spanning
DOM, accessibility, CSS, JS, and editing.
</div>
<div>
Prior to my involvement in standards, I helped to complete a
<a href="https://blogs.windows.com/msedgedev/2017/04/19/modernizing-dom-tree-microsoft-edge/">massive re-architecting</a>
of the core of the EdgeHTML rendering engine to enable it to meet the performance demands of the modern web.
</div>
<div>
I'm excited to continue pushing the capabilities of the web forward. Please don't hesitate to
<a href="/">contact me</a> if you'd like to get involved!
</div>
</div>
</body>