forked from craftzdog/link-in-bio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-image.html
42 lines (42 loc) · 1.11 KB
/
index-image.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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Takuya Matsuyama - Links</title>
<link rel="stylesheet" href="./index.css" />
</head>
<body>
<main>
<header>
<img src="./images/takuya.jpg" />
<h1>@craftzdog</h1>
</header>
<ul>
<li>
<a href="https://www.craftz.dog/">
<img src="./images/homepage.svg" alt="Homepage" width="20" />
Official Website
</a>
</li>
<li>
<a href="https://www.youtube.com/playlist?list=UU7yZ6keOGsvERMp2HaEbbXQ&index=1&playnext=1">
<img src="./images/youtube.svg" alt="YouTube" width="20" />
YouTube
</a>
</li>
<li>
<a href="https://twitter.com/inkdrop_app">
<img src="./images/twitter.svg" alt="Twitter" width="20" />
Twitter
</a>
</li>
<li>
<a href="https://github.com/craftzdog">
<img src="./images/github.svg" alt="GitHub" width="20" />
GitHub
</a>
</li>
</ul>
</main>
</body>
</html>