-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (56 loc) · 2.27 KB
/
index.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Taiwan Backend Group</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css">
</head>
<style>
html {
height: 100%;
}
body {
background-image: url("images/background.png");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
background-size: cover;
}
.avatar {
width: 200px;
height: 200px;
border-radius: 50%;
display: block;
margin: auto;
margin-top: 200px;
}
.head {
text-align: center;
color: whitesmoke;
font-family: "Times New Roman";
margin: 25px auto 0;
}
.link {
text-align: center;
}
i {
margin: 25px 10px;
}
</style>
<body>
<img src="images/avatar.png" alt="Avatar" class="avatar">
<h1 class="head">Taiwan Backend Group</h1>
<div class="link">
<span class="icon">
<a href="mailto:[email protected]"><i class="fa fa-envelope" aria-hidden="true" style="font-size:48px;color:lightgray;"></i></a>
<a href="https://hub.docker.com/u/taiwanbackendgroup"><i class="fab fa-docker" aria-hidden="true" style="font-size:48px;color:lightgray;"></i></a>
<a href="https://www.facebook.com/groups/taiwanbackendgroup"><i class="fab fa-facebook-square" aria-hidden="true" style="font-size:48px;color:lightgray;"></i></a>
<a href="https://github.com/b2etw"><i class="fab fa-github" aria-hidden="true" style="font-size:48px;color:lightgray;"></i></a>
<a href="https://join.slack.com/t/taiwanbackendgroup/shared_invite/enQtOTY1MzM2MjUzMjQ5LTlkYjY1YTRhNTk3ZjcyODRkMmJmMTMyZGRmZWJhZDc1NTc0NmFjMzY0MmI1MDg1YzlmMjQ2N2IxZGNiYmExYjU"><i class="fab fa-slack" aria-hidden="true" style="font-size:48px;color:lightgray;"></i></a>
<a href="https://line.me/ti/g2/js1UqYhEUtgdu_MWvhzjyQ?utm_source=invitation&utm_medium=link_copy&utm_campaign=default"><i class="fab fa-line" aria-hidden="true" style="font-size:48px;color:lightgray;"></i></a>
<a href="https://t.me/joinchat/DzqLHVfdgZaWVpvwLaOfwg"><i class="fab fa-telegram" aria-hidden="true" style="font-size:48px;color:lightgray;"></i></a>
</span>
</div>
</body>
</html>