-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformframe.html
More file actions
60 lines (42 loc) · 880 Bytes
/
formframe.html
File metadata and controls
60 lines (42 loc) · 880 Bytes
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
<!DOCTYPE HTML>
<html lang="he-IL">
<head>
<meta charset="UTF-8">
<title>טופס</title>
<style type="text/css">
body {margin: 1em 1em;}
body {margin:2em 4em;}
iframe {overflow:hidden;
height: 900px;
border:none;}
@media (max-width:1199px) {
iframe {
height: 800px;
}
}
/* Style for Large Screen */
@media (max-width:991px) {
iframe {
height: 600px;
}
}
/* Style for Medium Screen */
@media (max-width:767px) {
iframe {
height: 500px;
}
}
/* Style for Small Screen */
@media (max-width:575px) {
iframe {
height: 400px/* whatever height you want for mobile */
}
}
</style>
</head>
<body dir="rtl">
<div class="resp-container">
<iframe src="form2.html" scrolling="no" ></iframe>
</div>
</body>
</html>