-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·61 lines (57 loc) · 1.88 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>App view for B2G</title>
<!-- HUMAN -->
<link rel="author" href="humans.txt" />
<!-- CSS -->
<style type="text/css">
body { font: 16px/21px Sans-serif, Helvetica, Arial; color: #333; }
li { float: left; clear: both; list-style: none; }
h2 { text-align: center; }
h2 span { color: #666; margin-left: 8px; }
iframe { margin-bottom: 40px; }
</style>
</head>
<body>
<ul>
<li>
<h2>Iphone<span>320x480</span></h2>
<iframe src="commslog.html" style="border: none; width: 320px; height: 480px;"></iframe>
</li>
<li>
<h2>Iphone Retina<span>640x960</span></h2>
<iframe src="commslog.html" style="border: none; width: 640px; height: 960px;"></iframe>
</li>
<li>
<h2>Ipad<span>1024x768</span></h2>
<iframe src="commslog.html" style="border: none; width: 1024px; height: 768px;"></iframe>
</li>
<li>
<h2>Samsung SWD-M100<span>480x800</span></h2>
<iframe src="commslog.html" style="border: none; width: 480px; height: 800px;"></iframe>
</li>
<li>
<h2>Samsung Galaxy SIII<span>720x1280</span></h2>
<iframe src="commslog.html" style="border: none; width: 720px; height: 1280px;"></iframe>
</li>
<li>
<h2>Samsung Galaxy Tab<span>600x1024</span></h2>
<iframe src="commslog.html" style="border: none; width: 600px; height: 1024px;"></iframe>
</li>
<li>
<h2>Samsung Galaxy Tab 10.1<span>800x1280</span></h2>
<iframe src="commslog.html" style="border: none; width: 800px; height: 1280px;"></iframe>
</li>
<li>
<h2>Amazon Kindle<span>600x800</span></h2>
<iframe src="commslog.html" style="border: none; width: 600px; height: 800px;"></iframe>
</li>
<li>
<h2>HTC Wildfire<span>240x320</span></h2>
<iframe src="commslog.html" style="border: none; width: 240px; height: 320px;"></iframe>
</li>
</ul>
</body>
</html>