-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
45 lines (42 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Github-profile</title>
<meta name="description" content="GitHub profile widget. A simple widget to display your github profile and repositories.">
</head>
<body>
<github-w user="binodswain">
<profile-info
data-theme="light"
data-company="true"
data-bio="true"
>
</profile-info>
</github-w>
<github-w user="binodswain">
<profile-info
data-theme="dark"
data-company="true"
data-bio="false"
>
</profile-info>
</github-w>
<github-w user="binodswain">
<profile-info
data-theme="light"
data-company="true"
data-bio="false"
>
</profile-info>
<repo-info
data-limit="5"
data-direction="desc"
data-sort="updated"
></repo-info>
</github-w>
<script src="/dist/github-widget.esm.mjs" type="module"></script>
</body>
</html>