-
Notifications
You must be signed in to change notification settings - Fork 0
/
iframe.html
33 lines (33 loc) · 1.21 KB
/
iframe.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Mobile Data Visualisation</title>
<style>
html, body { height: 100%; font-family: "Open Sans",sans-serif }
body { background: #202020; margin: 0; padding: 0; }
table { width: 100%; height: 100%; border: none; margin: 0; padding: 0; }
td { width: 50%; height: 100%; border: none; }
iframe { width: 100%; height: 100%; border: none; }
img { border: 0; }
.footer { font-family: 24pt; text-align: center; color: white; height: 58px; }
.footer a { text-decoration: none; }
.footer a img { border: 0; height: 60px; vertical-align: middle; }
</style>
</head>
<body>
<table>
<tr>
<td><iframe src="index.html?HardwareVendor=Sony" scrolling="no"></iframe></td>
<td><iframe src="index.html?HardwareVendor=LG" scrolling="no"></iframe></td>
</tr>
<tr>
<td class="footer" colspan="2">
<span>From </span>
<a href="https://51degrees.com" title="51Degrees - Fastest and Most Accurate Device Detection"><img src="assets/info/logo-51degrees-transparent.png"/></a>
<span> & </span>
<a href="http://awaystudios.com"><img src="assets/info/logo-away-transparent.png"/></a>
</td>
</tr>
</table>
</body>
</html>