forked from willzittlau/notion-stockwidget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (64 loc) · 1.66 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
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Notion Stock Widget</title>
<link rel="stylesheet" href="style.css" />
</head>
<body class="light">
<!-- Light/Dark Btn -->
<div class="settings">
<div class="modes">
<button class="light">Light</button>
<button class="dark">Dark</button>
</div>
</div>
<!-- TradingView Widget BEGIN -->
<!-- TradingView Widget BEGIN -->
<div class="tradingview-widget-container">
<div class="tradingview-widget-container__widget"></div>
<div class="tradingview-widget-copyright"><a href="https://www.tradingview.com/markets/" rel="noopener" target="_blank"><span class="blue-text">Markets</span></a> by TradingView</div>
<script type="text/javascript" src="https://s3.tradingview.com/external-embedding/embed-widget-ticker-tape.js" async>
{
"symbols": [
{
"description": "",
"proName": "NYSE:SHOP"
},
{
"description": "",
"proName": "NYSE:TWLO"
},
{
"description": "",
"proName": "NASDAQ:NFLX"
},
{
"description": "",
"proName": "NYSE:SQ"
},
{
"description": "",
"proName": "NYSE:SE"
},
{
"description": "",
"proName": "NASDAQ:ETSY"
}
],
"showSymbolLogo": true,
"colorTheme": "dark",
"isTransparent": true,
"displayMode": "regular",
"locale": "en"
}
</script>
</div>
<!-- TradingView Widget END -->
<!-- TradingView Widget END -->
<!-- Custom JS for widget styling BEGIN -->
<script src="app.js"></script>
<!-- Custom JS END -->
</body>
</html>