-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (42 loc) · 1.09 KB
/
index.html
File metadata and controls
43 lines (42 loc) · 1.09 KB
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
<!doctype html>
<html lang="en-gb">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Codewars Badge</title>
<meta
name="description"
content="Extending HTML to create reusable web components with Codewars API data"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script type="module" src="./codewars-badge.js"></script>
<script type="module" src="./codewars-stats.js"></script>
</head>
<body
style="
margin: 0;
font-family: Arial, sans-serif;
background: #f5f5f5;
color: #222;
text-align: center;
padding: 2rem 1rem;
"
>
<main>
<h1>My Codewars Profile</h1>
<p>Reusable web components powered by the Codewars API.</p>
<div
style="
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
margin-top: 2rem;
"
>
<codewars-badge></codewars-badge>
<codewars-stats></codewars-stats>
</div>
</main>
</body>
</html>