mirror of
https://github.com/seigler/Dash-price-widget
synced 2025-07-26 23:56:10 +00:00
33 lines
1.1 KiB
HTML
33 lines
1.1 KiB
HTML
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
<title>Dash Price Widget | demo</title>
|
|
<meta name="description" content="Dash price widget">
|
|
<meta name="author" content="Joshua Seigler">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Dash Price Widget</h1>
|
|
|
|
<div data-dash-price-widget="usd"></div>
|
|
<script async type="application/javascript" src="https://seigler.github.io/Dash-price-widget/scripts/app.js"></script>
|
|
|
|
<h2>How to use this widget:</h2>
|
|
<p>Copy and paste the lines below to add this widget to your web page.</p>
|
|
<pre>
|
|
<div data-dash-price-widget="usd"></div><br/><script async type="application/javascript" src="https://seigler.github.io/Dash-price-widget/scripts/app.js"></script>
|
|
</pre>
|
|
<p>You can also specify multiple currencies:</p>
|
|
<pre>
|
|
<div data-dash-price-widget="usd eur cny"></div><br/><script async type="application/javascript" src="https://seigler.github.io/Dash-price-widget/scripts/app.js"></script>
|
|
</pre>
|
|
|
|
</body>
|
|
|
|
</html>
|