-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (33 loc) · 799 Bytes
/
index.html
File metadata and controls
36 lines (33 loc) · 799 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Codewars Badge</title>
<style>
body {
font-family: sans-serif;
padding: 20px;
}
.badge, .top-languages {
border: 1px solid #ccc;
padding: 10px;
width: 250px;
margin-bottom: 20px;
}
h2, h3 {
margin: 0 0 10px 0;
}
</style>
</head>
<body>
<h1>My Codewars Progress</h1>
<!-- Badge component -->
<codewars-badge></codewars-badge>
<!-- Top languages component -->
<codewars-top-languages></codewars-top-languages>
<!-- JS Modules -->
<script type="module" src="codewars-badge.js"></script>
<script type="module" src="codewars-top-languages.js"></script>
</body>
</html>