-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (66 loc) · 2.24 KB
/
index.html
File metadata and controls
66 lines (66 loc) · 2.24 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
<!DOCTYPE html>
<html>
<head>
<title>Yasir Din</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="https://cdn.rawgit.com/dreampulse/computer-modern-web-font/master/fonts.css">
<link rel="icon" type="image/png" href="favicon.ico">
<style>
header {
padding-top: 5%;
}
body {
font-family: "Computer Modern Sans";
font-size: 120%;
padding: 5% 5%;
box-sizing: border-box;
}
html, body {
height: 100%;
}
img {
width: 200px;
height: auto;
}
div {
max-width: 600px;
width: 100%;
}
footer {
padding-bottom: 5%;
}
</style>
</head>
<body>
<header>
<!-- <img src="me.png" alt="Photo of Yasir Din"> -->
</header>
<main>
<div>
<h2>👋 Hello, I'm Yasir.</h2>
<p>📍 London, UK.</p>
<p>
💼 I'm a machine learning engineer and manager with over <script>document.write(new Date().getFullYear() - 2017)</script> years experience
developing, designing, and deploying machine learning systems.
</p>
<p>
Delivering sustainable business impact with machine learning is hard.
<br>↪ I can help you get it right.
</p>
<p>
I like: software, science, systems, data, design, music, <i>...etc.</i>
</p>
<p>
You can find me on:<br>
<a href="https://github.com/yasirdin">GitHub</a><br>
<a href="https://www.are.na/yasir-din/channels">Are.na</a><br>
<a href="https://twitter.com/yasirdin1">X</a><br>
</p>
</div>
</main>
<footer>
📥 Get in touch: yasir -at- yasirdin.net
</footer>
</body>
</html>