forked from suraj9706/links
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (89 loc) · 2.43 KB
/
index.html
File metadata and controls
101 lines (89 loc) · 2.43 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
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: #16161a;
padding-top: 40px;
padding-bottom: 40px;
display: flex;
justify-content: center;
}
.name {
color: #fffffe;
display: flex;
justify-content: center;
}
.banner {
display: flex;
justify-content: center;
}
.banner-image {
width: 128px;
height: 128px;
object-fit: cover;
border-radius: 128px;
}
.thumbnail {
width: 48px;
height: 48px;
object-fit: cover;
border-radius: 48px;
}
.social-icons {
display: flex;
justify-content: space-around;
}
.social-icons a {
color: #fffffe;
text-decoration: none;
}
.link {
background-color: #7f5af0;
display: flex;
align-items: center;
}
.link a {
color: #fffffe;
text-decoration: none;
text-align: center;
flex-grow: 1;
padding: 5px;
}
.items {
display: flex;
flex-direction: column;
gap: 30px;
max-width: 420px;
flex-grow: 1;
}
</style>
</head>
<body>
<div class="items">
<div class="banner">
<img class="banner-image" src="https://avatars.githubusercontent.com/u/44586402?v=4" alt="profile headshot">
</div>
<div class="name">
Joshua Kaunert
</div>
<div class="social-icons">
<a href="https://github.com/jkaunert" target="_blank">Github</a>
<a href="https://linkedin.com/in/jkaunert" target="_blank">LinkedIn</a>
<a href="https://dev.to/jkaunert" target="_blank">Dev.to</a>
</div>
<div class="link">
<img class="thumbnail" src="https://kbd.news/img/kbdnews_128.png">
<a href="https://kbd.news/" target="_blank">Keyboard Builders' Digest</a>
</div>
<div class="link">
<img class="thumbnail" src="https://fatbobman.com/_astro/apple-touch-icon.2312227635.RNVrzb6f.png">
<a href="https://fatbobman.com/en/" target="_blank">Fatbobman's Blog</a>
</div>
<div class="link">
<img class="thumbnail" src="https://www.qatsi.org/images/godfrey.gif">
<a href="https://www.youtube.com/watch?v=vuI_nCADnW0" target="_blank">'Evidence' - A short film by Godfrey Reggio</a>
</div>
</div>
</body>
</html>