-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (24 loc) · 805 Bytes
/
index.html
File metadata and controls
30 lines (24 loc) · 805 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Tradingview Widget</title>
<link rel="shortcut icon" href="4.jpg" type="image/x-icon">
</head>
<body>
<div class="tradingview-widget-container">
<div id="chart"></div>
<div class="tradingview-widget-copyright">
<a href="https://www.tradingview.com/" rel="noopener nofollow" target="_blank">
<span class="blue-text">
Track all markets on Tradingview
</span>
</a>
</div>
</div>
<script src="https://s3.tradingview.com/tv.js"></script>
<script src="index.js"></script>
</body>
</html>