-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (55 loc) · 1.72 KB
/
index.html
File metadata and controls
55 lines (55 loc) · 1.72 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta charset="UTF-8" />
<title>Ivan Zuzak's homepage</title>
<meta name="author" content="Ivan Zuzak" />
<meta name="description" content="Hi! 👋 I'm Ivan Zuzak, software engineer based in Switzerland" />
<link rel="license" type="text/html" href="https://creativecommons.org/licenses/by/3.0/" />
<link rel="me" type="text/html" href="https://github.com/izuzak"/>
<link rel="me" type="text/html" href="https://linkedin.com/in/izuzak"/>
<style>
body {
font-family: monospace, monospace;
display: flex;
flex-flow: column nowrap;
align-items: center;
background-color: #373b44;
color: #bd5532;
}
div {
align-items: left;
}
h1 {
font-size: 3em;
margin-top: 20%;
}
p {
font-size: 2em;
max-width: 800px;
margin-top: 2em;
line-height: 1.6em;
}
a {
color: #e1b866;
}
a:hover {
color: #dee1b6;
}
</style>
</head>
<body>
<div>
<h1>
👋 Hi! My name is Ivan
</h1>
<p>
I'm a software engineer at <a href="https://github.com/about">GitHub</a> and I live in <a href="https://en.wikipedia.org/wiki/Switzerland">Switzerland</a>
</p>
<p>
There's info about me on <a href="https://www.linkedin.com/in/izuzak" rel="me">LinkedIn</a> and <a href="https://github.com/izuzak" rel="me">GitHub</a>, and my email is <a href="mailto:izuzak@gmail.com" rel="me">izuzak@gmail.com</a>
</p>
</div>
</body>
</html>