-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (90 loc) · 2.61 KB
/
index.html
File metadata and controls
94 lines (90 loc) · 2.61 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ole Lasse's Github page</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<header>
<p>
<svg width="215" height="80">
<ellipse
ry="30"
rx="30"
cy="35"
cx="35"
fill="SkyBlue"
stroke-width="5"
stroke="black"
/>
<ellipse
ry="30"
rx="30"
cy="35"
cx="105"
fill="PaleGreen"
stroke-width="5"
stroke="black"
/>
<ellipse
ry="30"
rx="30"
cy="35"
cx="175"
fill="SandyBrown"
stroke-width="5"
stroke="black"
/>
<text text-anchor="middle" font-size="50" y="54" x="36" fill="black">
O
</text>
<text text-anchor="middle" font-size="50" y="54" x="105" fill="black">
L
</text>
<text text-anchor="middle" font-size="50" y="54" x="175" fill="black">
B
</text>
</svg>
</p>
<h1>Ole Lasse's Github page</h1>
</header>
<main>
<h2>Welcome to my GitHub stats page</h2>
<p>
Here you can find some stats over my github page. More "might" come
later.
</p>
<section>
<img
src="https://streak-stats.demolab.com?user=olelasse&theme=solarized-light&date_format=j%20M%5B%20Y%5D"
alt="GitHub Streak"
/>
<img
src="http://github-profile-summary-cards.vercel.app/api/cards/profile-details?username=olelasse&theme=solarized"
alt="Github Profile Summary Card"
/>
</section>
<section>
<img
src="http://github-profile-summary-cards.vercel.app/api/cards/repos-per-language?username=olelasse&theme=solarized"
alt="Top Languages by Repo"
/>
<img
src="http://github-profile-summary-cards.vercel.app/api/cards/stats?username=olelasse&theme=solarized"
alt="Stats Card"
/>
</section>
</main>
<footer>
<p><span class="copyright">©</span> 2025 Ole Lasse Bjellaas</p>
<p>Page is coded to view projects and stats from github.</p>
<p class="copy-text">
Images and codes to view stats are from
https://github-profile-summary-cards.vercel.app/ or
https://streak-stats.demolab.com/
</p>
</footer>
</body>
</html>