-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexamples.html
More file actions
28 lines (24 loc) · 1.2 KB
/
examples.html
File metadata and controls
28 lines (24 loc) · 1.2 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
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>Mini-Badges Beispiele</title>
<style>img{margin:8px} body{font-family:system-ui,Segoe UI,Arial,sans-serif;padding:20px}</style>
</head>
<body>
<h1>Mini-Badges – Beispiele</h1>
<p>Query-Parameter anpassen und als <code><img src></code> einbinden.</p>
<h2>Statisch</h2>
<img src="badge.php?text1=Ronny%E2%9D%A4%EF%B8%8FPHP&text2=Awesome&style=flat&color1=black&color2=blue" alt="Ronny loves PHP">
<img src="badge.php?text1=Build&text2=Passing&style=flat-square" alt="Build Passing">
<h2>GitHub (dynamisch)</h2>
<img src="badge.php?type=github&metric=stars&owner=badges&repo=shields&style=flat" alt="Stars">
<img src="badge.php?type=github&metric=forks&owner=badges&repo=shields&style=flat-square&lang=de" alt="Forks">
<img src="badge.php?type=github&metric=top_language&owner=badges&repo=shields&style=plastic&lang=de&color2=%234c1" alt="Top Sprache">
<h2>Styles</h2>
<img src="badge.php?text1=style&text2=flat&style=flat">
<img src="badge.php?text1=style&text2=flat-square&style=flat-square">
<img src="badge.php?text1=style&text2=plastic&style=plastic">
<img src="badge.php?text1=style&text2=for-the-badge&style=for-the-badge">
</body>
</html>