-
Notifications
You must be signed in to change notification settings - Fork 2
/
responsive.html
executable file
·44 lines (44 loc) · 1.7 KB
/
responsive.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Responsive Design Testing</title>
<style>
body { margin: 20px; font-family: sans-serif; overflow-x: scroll; width: 4100px; }
.frame { float: left; margin: 0 20px 20px 0; }
small { display: block; color: #888; }
h2 { margin: 0 0 5px 0; }
</style>
</head>
<body>
<h1>Responsive Design Testing</h1>
<div class="frame">
<h2>160 x 240 <small>(feature phone)</small></h2>
<iframe src="./home.html" sandbox="allow-same-origin allow-forms" seamless width="160" height="240"></iframe>
</div>
<div class="frame">
<h2>240 x 400 <small>(BB Torch)</small></h2>
<iframe src="./home.html" sandbox="allow-same-origin allow-forms" seamless width="240" height="400"></iframe>
</div>
<div class="frame">
<h2>320 x 480 <small>(iphone - portrait)</small></h2>
<iframe src="./home.html" sandbox="allow-same-origin allow-forms" seamless width="320" height="480"></iframe>
</div>
<div class="frame">
<h2>480 x 320 <small>(iphone - landscape)</small></h2>
<iframe src="./home.html" sandbox="allow-same-origin allow-forms" seamless width="480" height="320"></iframe>
</div>
<div class="frame">
<h2>640 x 480<small>(tablet - landscape)</small></h2>
<iframe src="./home.html" sandbox="allow-same-origin allow-forms" seamless width="640" height="480"></iframe>
</div>
<div class="frame">
<h2>768 x 1024 <small>(netbook)</small></h2>
<iframe src="./home.html" sandbox="allow-same-origin allow-forms" seamless width="768" height="1024"></iframe>
</div>
<div class="frame">
<h2>1280 x 1024 <small>(desktop)</small></h2>
<iframe src="./home.html" sandbox="allow-same-origin allow-forms" seamless width="1280" height="1024"></iframe>
</div>
</body>
</html>