mirror of
https://github.com/seigler/cryptohistory.org
synced 2025-07-26 09:16:10 +00:00
43 lines
835 B
PHP
43 lines
835 B
PHP
<!DOCTYPE html>
|
|
<html lang="en-US">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0">
|
|
<title>NeatCharts demo</title>
|
|
<style>
|
|
main {
|
|
-webkit-columns: 800px 2;
|
|
-moz-columns: 800px 2;
|
|
columns: 800px 2;
|
|
}
|
|
section {
|
|
display: inline-block;
|
|
width: auto;
|
|
max-width: 800px;
|
|
padding: 10px;
|
|
vertical-align: top;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<h1>NeatCharts demo</h1>
|
|
</header>
|
|
<main>
|
|
<section>
|
|
<h2>Poloniex Dash/BTC Price</h2>
|
|
<img src="/charts/dash/24h" alt="Poloniex Dash/BTC price">
|
|
</section>
|
|
|
|
<section>
|
|
<h2>Fake Stock Market Data</h2>
|
|
</section>
|
|
|
|
<section>
|
|
<h2>Monotonically Smoothed Chart</h2>
|
|
</section>
|
|
</main>
|
|
|
|
</body>
|
|
</html>
|