-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
35 lines (35 loc) · 811 Bytes
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Döviz Rozeti</title>
<style>
html, body {
padding: 0;
margin: -2px 0;
font-family: Arial, Helvetica, sans-serif;
}
body {
width: 500px;
background-color: #364353;
}
.title {
color:#f5f5f5;
font-size:16px;
text-align: right;
padding:15px 15px 0 0;
}
.ps {
color:#f5f5f5;
font-size:10px;
text-align: center;
padding: 5px;
}
</style>
</head>
<body>
<div class="title">Amerikan Doları</div>
<iframe id="graph" src="https://grafik.doviz.com/android/C/USD/minute" width="500" height="300" frameborder="0"></iframe>
<div class="ps">Diğer döviz kurları kısa bir süre sonra eklenecektir.</div>
</body>
</html>