-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
125 lines (121 loc) · 3.89 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>Video Streaming - Fintechee</title>
<meta name="description"
content="Fintechee's video streaming" />
<meta name="robots" content="max-snippet:-1, max-image-preview:large, max-video-preview:-1" />
<meta property="og:title" content="Video Streaming - Fintechee" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Fintechee's video streaming" />
<meta property="og:url" content="https://www.fintechee.live/" />
<meta property="og:site_name" content="Fintechee" />
<meta property="og:image" content="https://www.fintechee.com/images/fintechee_welcome.png" />
<meta property="og:image:secure_url" content="https://www.fintechee.com/images/fintechee_welcome.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="70" />
<meta property="og:image:height" content="100" />
<meta property="og:image:alt" content="Fintechee: Best trading platform and Fintech company with our WEB trader and FIX API trading platform" />
<meta property="og:video" content="https://youtu.be/nrtX9cmTkWU" />
<meta property="og:video:secure_url" content="https://youtu.be/nrtX9cmTkWU" />
<meta property="og:video:width" content="1280" />
<meta property="og:video:height" content="720" />
<meta property="og:updated_time" content="2021-02-12T00:00:00+00:00" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Video Streaming - Fintechee" />
<meta name="twitter:description" content="Fintechee's video streaming" />
<meta name="twitter:image" content="https://www.fintechee.com/images/fintechee_welcome.png" />
<link rel="shortcut icon" href="https://www.fintechee.live/favicon.ico" />
<link rel="canonical" href="https://www.fintechee.live/" />
<style>
.wrapper {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: grid;
border-style: none;
border-color: red;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(2, 1fr);
grid-gap: 2px;
}
.one {
background: #EEE;
border-style: none;
border-color: blue;
grid-column: 1 / 2;
grid-row: 1 / 3;
height: 100%;
}
.two {
background: #EEE;
border-style: none;
border-color: yellow;
grid-column: 2 / 3;
grid-row: 1 / 2;
}
.three {
background: #EEE;
border-style: none;
border-color: violet;
grid-column: 2 / 3;
grid-row: 2 / 3;
}
@media (max-width: 767px), (max-height: 600px) {
.wrapper {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: grid;
border-style: none;
border-color: red;
grid-template-columns: repeat(1, 1fr);
grid-template-rows: repeat(2, 1fr);
grid-gap: 2px;
}
.one {
display: none;
background: #EEE;
border-style: none;
border-color: blue;
grid-column: 1 / 2;
grid-row: 1 / 3;
height: 100%;
}
.two {
background: #EEE;
border-style: none;
border-color: yellow;
grid-column: 1 / 2;
grid-row: 1 / 2;
}
.three {
background: #EEE;
border-style: none;
border-color: violet;
grid-column: 1 / 2;
grid-row: 2 / 3;
}
}
</style>
</head>
<body>
<div class="wrapper">
<div class="one">
<iframe src="https://www.fintechee.com/web-trader/" style="width:100%;height:100%;border:none"></iframe>
</div>
<div class="two">
<iframe src="https://www.youtube.com/embed/P-lyCXTcLuk" style="width:100%;height:100%;border:none"></iframe>
</div>
<div class="three">
<iframe src="https://www.fintechee.live/disqus.html" style="width:100%;height:100%;border:none"></iframe>
</div>
</div>
</body>
</html>