-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
60 lines (52 loc) · 2.2 KB
/
index.html
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
<html>
<head>
<title>tippin.me Badge Generator</title>
<link rel="shortcut icon" href="favicon.png">
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8">
<meta name="description" content="Readme badge generator for tippin.me.">
<meta property="og:site_name" content="tippin.me Badge Generator">
<meta property="og:title" content="tippin.me Badge Generator">
<meta property="og:type" content="website">
<meta property="og:image" content="card.png">
<meta property="og:description" content="Readme badge generator for tippin.me.">
<meta property="og:url" content="https://lukechilds.github.io/tippin-badge">
<meta property="twitter:card" content="summary_large_image">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-77178022-5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-77178022-5');
</script>
</head>
<body>
<div class="container">
<h1>⚡️ tippin.me Badge Generator</h1>
<h2 class="description">Enter your Twitter username</h2>
<div class="input-container">
<input type="text" name="username" placeholder="username" autofocus autocomplete="off">
<span class="prefix">@</span>
</div>
<div class="badge-preview"></div>
<h3 class="output-title">Markdown</h3>
<pre class="badge-markdown"></pre>
<h3 class="output-title">HTML</h3>
<pre class="badge-html"></pre>
<h3 class="output-title">SVG</h3>
<pre class="badge-svg"></pre>
<footer>
<span class="version"></span>
-
<a rel="noopener noreferrer" target="_blank" href="//github.com/lukechilds/tippin-badge">Source code</a>
-
<a rel="noopener noreferrer" target="_blank" href="//github.com/lukechilds/tippin-badge/issues">Report a bug</a>
<div class="me">
A thing by <a rel="noopener noreferrer" target="_blank" href="//lukechilds.co">@lukechilds</a>
</div>
</footer>
</div>
<script src="./script.js"></script>
</body>
</html>