-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (78 loc) · 2.57 KB
/
index.html
File metadata and controls
87 lines (78 loc) · 2.57 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
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chris Kane - Software Engineer - Glasgow, Scotland</title>
<style>
body {
font-family: Garamond, "EB Garamond", Times, serif;
background-color: #000;
color: #c0c0c0;
margin: 0;
}
#container {
max-width: 600px;
margin: auto;
left: 0;
right: 0;
padding: 8px 10px 10px 10px;
}
header {
text-align: center;
}
hr {
margin: 0;
border-color: #c0c0c0;
}
h1 {
font-size: 50px;
margin: 0;
background: -webkit-linear-gradient(#fff, #919191);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: lighter;
}
h2 {
font-size: 22px;
margin: 0;
}
a {
color: #c0c0c0;
}
nav li {
list-style-type: none;
display: inline;
margin: 0 5px 0 5px;
}
nav ul {
padding: 0;
margin: 10px 0 18px 0;
}
section ul {
padding-left: 30px;
}
</style>
</head>
<body>
<div id="container">
<header>
<h1>Chris Kane</h1>
<h2>👨🏻‍💻 Software Engineer</h2>
<h2>🏴󠁧󠁢󠁳󠁣󠁴󠁿 Glasgow, Scotland</h2>
<nav>
<ul>
<li><a href="https://docs.google.com/forms/d/e/1FAIpQLSf6P1eT-R3QOqTErzDQl6jjGCKR5yaosYPM2hdPCWQU2BQNgw/viewform?usp=sf_link">Contact</a></li>
<li><a href="https://www.linkedin.com/in/-chriskane/">LinkedIn</a></li>
<li><a href="https://github.com/chriskanedev">GitHub</a></li>
<li><a href="https://x.com/chrisk4ne">𝕏 (Twitter)</a></li>
</ul>
</nav>
<hr>
</header>
<footer>
<p>© 2024 – chriskane.com</p>
</footer>
</div>
</body>
</html>