-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
122 lines (118 loc) · 3.94 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<html>
<head>
<title>Viet Nam Team Open</title>
<meta name="description" content="Home page of Viet Nam team open. Where we build fun stuffs">
<meta name="keywords" content="Viet Nam, VN, open, team">
<meta name="author" content="Viet Nam Team Open">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="Viet Nam Team Open" />
<meta property="og:description" content="Home page of Viet Nam team open. Where we build fun stuffs" />
<meta property="og:url" content="https://vnteamopen.com" />
<meta property="og:image" content="https://raw.githubusercontent.com/vnteamopen/vnteamopen.github.io/main/logo.png" />
<meta name="twitter:title" content="Viet Nam Team Open">
<meta name="twitter:description" content="Home page of Viet Nam team open. Where we build fun stuffs">
<meta name="twitter:image" content="https://raw.githubusercontent.com/vnteamopen/vnteamopen.github.io/main/logo.png">
<meta name="twitter:card" content="summary_large_image">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="https://raw.githubusercontent.com/vnteamopen/vnteamopen.github.io/main/favicon.ico">
<style>
body {
margin: 0;
}
.logo {
max-width: 250px;
}
.header {
text-align: center;
}
.projects {
list-style: none;
display: flex;
flex-wrap: wrap;
align-items: flex-start;
justify-content: center;
float: left;
margin: 0px;
padding: 0px;
width: 100%;
}
.projects .project {
margin: 10px;
}
.projects .project a {
display: block;
width: 130px;
height: 130px;
box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
padding: 10px;
margin-top: 5px;
}
.projects .project a:hover {
box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.projects .project t, .projects .project c {
font-family: 'Montserrat', sans-serif;
font-size: 14px;
display: block;
text-align: center;
}
.projects .project a.home {
background-color: #DAE8FC;
}
.projects .project t {
font-weight: 600;
}
.projects .project c {
font-weight: 400;
margin-top: 10px;
}
a, a:hover, a:visited, a:active {
color: inherit;
text-decoration: none;
}
</style>
</head>
<body>
<div class="header"><img class="logo" src="https://raw.githubusercontent.com/vnteamopen/vnteamopen.github.io/main/logo.png" /></div>
<ul class="projects">
<li class="project">
<a class="home" target="_blank" href="https://github.com/vnteamopen">
<t>Github</t>
<c>The home page source code</c>
</a>
</li>
<li class="project">
<a target="_blank" href="https://github.com/vnteamopen/dataservicex">
<t>dataserviceX</t>
<c>A library wrapups common CRUD functions of the data service layer to access a database.</c>
</a>
</li>
<li class="project">
<a target="_blank" href="https://github.com/vnteamopen/goretry">
<t>Go retry</t>
<c>A library supports many retry backoff strategies and jitter.</c>
</a>
</li>
<li class="project">
<a target="_blank" href="https://github.com/vnteamopen/config-template">
<t>Config template</t>
<c>A tool for embedding file's contents into the template file.</c>
</a>
</li>
<li class="project">
<a target="_blank" href="https://github.com/vnteamopen/config-env">
<t>Config env</t>
<c>A tool for embedding variable environment into the input file.</c>
</a>
</li>
<li class="project">
<a target="_blank" href="https://godebouncer.vnteamopen.com">
<t>Go Debouncer</t>
<c>a Go language library that support debounce actions.</c>
</a>
</li>
</ul>
</body>
</html>