Updates include removing dependancy on Google Fonts, cleaning up build process, and pulling CSS back into it's own file
52 lines
2.6 KiB
HTML
52 lines
2.6 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>WoW Historical Token Prices Tracker</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="description" content="Track current and historical gold price trends for the World of Warcraft (WoW) in game token, including the US, EU, TW, and KR regions. Prices updated every minute. Simple, quick, and easy info, no ads or tracking, ever.">
|
|
<link rel="stylesheet" href="style.css">
|
|
<link rel="preconnect" href="https://data.wowtoken.app">
|
|
<link rel="dns-prefetch" href="https://data.wowtoken.app">
|
|
<link rel="preload" href="https://data.wowtoken.app/token/current.json" as="fetch" type="application/json" crossorigin="anonymous">
|
|
<link rel="preload" href="https://data.wowtoken.app/token/history/us/72h.json" as="fetch" type="application/json" crossorigin="anonymous">
|
|
<script src="bundle.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="flex-container">
|
|
<div><h1>1 Token = <u id="token">0</u> Gold</h1></div>
|
|
<div>
|
|
<canvas id="token-chart"></canvas>
|
|
<div id="option_select">
|
|
<label for="region">Region:</label>
|
|
<select name="region" id="region">
|
|
<option value="us">US</option>
|
|
<option value="eu">EU</option>
|
|
<option value="kr">KR</option>
|
|
<option value="tw">TW</option>
|
|
</select>
|
|
<br />
|
|
<label for="time">Time Selection:</label>
|
|
<select name="time" id="time">
|
|
<option value="72h">3 Days</option>
|
|
<option value="168h">7 Days</option>
|
|
<option value="336h">14 Days</option>
|
|
<option value="30d">1 Month</option>
|
|
<option value="90d">3 Months</option>
|
|
<option value="6m">6 Months</option>
|
|
<option value="1y">1 Year</option>
|
|
<option value="all">All Available</option>
|
|
</select>
|
|
</div>
|
|
<div id="source">
|
|
<p>
|
|
<a href="https://github.com/sneaky-emily/wowtoken.app">Source</a>
|
|
|
|
|
<a href="https://blog.emily.sh2021/04/developing-a-simple-wow-token-tracker/">About</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|