-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
65 lines (56 loc) · 2.83 KB
/
main.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>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Investing Live Currency</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<script src="js/google-analytics.js" ></script>
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/main.js" ></script>
</head>
<body style="margin: 5px;">
<ul class="nav nav-tabs nav-fill justify-content-center border-0" id="myTab" role="tablist">
<li class="nav-item" role="presentation">
<a class="nav-link " id="currency-tab" data-toggle="tab" href="#currency" aria-controls="home" aria-selected="false">Currency</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link " id="crypto-tab" data-toggle="tab" href="#crypto" aria-controls="profile" aria-selected="false">Cryptocurrency</a>
</li>
</ul>
<div id="rate-us-div" style="align: center; font-family: Arial, Helvetica, sans-serif; font-size: smaller">
Enjoying the extension? Please <a style="font-size: small;" id="rate-us-link" target="_blank"
href="https://chromewebstore.google.com/detail/investingcom-currencies/iomjnncncpafccgaablgejamkpplgflo/reviews">rate us</a>
on the store :)
</div>
<div class="tab-content border-top-0 " style="width: 325px;" id="myTabContent">
<div class="tab-pane fade" id="currency" role="tabpanel" aria-labelledby="currency-tab">
<iframe id="mainframe"
width="325px"
height="100px"
frameborder="0"
allowtransparency="true"
marginwidth="0"
marginheight="0">
</iframe>
</div>
<div class="tab-pane fade" id="crypto" role="tabpanel" aria-labelledby="crypto-tab">
<iframe id="cryptoframe"
width="325px"
height="100px"
frameborder="0"
allowtransparency="true"
marginwidth="0"
marginheight="0">
</iframe>
</div>
<div class="poweredBy" style="font-family: Arial, Helvetica, sans-serif;">
<a style="align: left; font-size: small" target="_blank" href="/options.html">Options</a>
<div style="float:right; font-size: small">Powered by
<a style="float: right" href="https://www.investing.com?utm_source=WMT&utm_medium=referral&utm_campaign=LIVE_CURRENCY_X_RATES&utm_content=Footer%20Link" target="_blank" rel="nofollow">Investing.com</a>
</div>
</div>
</div>
</body>
</html>