Delete badge.html

This commit is contained in:
2017-12-16 18:43:15 +01:00
committed by GitHub
parent 40c28ee0a9
commit b7064db783

View File

@@ -1,21 +0,0 @@
<!DOCTYPE html>
<html>
<body>
</body>
<script>
var progress = (3/24)*100
var color = ''
if (progress >= 66)
color = 'green'
else if (progress < 66)
color = 'orange'
else
color = 'red'
var img = document.createElement("img");
img.src = `https://img.shields.io/badge/Progress-${progress}-${color}.svg`;
document.body.appendChild(img);
</script>
</html>