41 lines
742 B
HTML
41 lines
742 B
HTML
<html><head>
|
|
<link href="https://unpkg.com/picnic" rel="stylesheet">
|
|
<title>The Button</title>
|
|
<style>
|
|
@font-face{
|
|
font-family: "8-bit";
|
|
src: url('../font.txt'),
|
|
url('../font.txt'); /* IE */
|
|
}
|
|
body {
|
|
font-family: "8-bit";
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="flex one three-600 demo">
|
|
<div><span></span></div>
|
|
<div style="text-align:center;" class="lll"><span>
|
|
<br>
|
|
<br>
|
|
<h3>It's a button, click it</h3>
|
|
|
|
|
|
<a href="https://twitter.com/intent/tweet?hashtags=RTLButton&ref_src=twsrc%5Etfw&related=ewpratten&text=I%20pressed%20the%20button!&tw_p=tweetbutton&url=http%3A%2F%2Fwww.retrylife.ca%2Fbutton"><button>Button</button></a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</span></div>
|
|
<div><span></span></div>
|
|
</div>
|
|
|
|
</body></html>
|