File size: 1,038 Bytes
1d34382
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Responsive Iframe Example</title>
  <style>
    body {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      margin: 0;
      background: #f5f5f5;
      padding: 10px;
    }
    .iframe-container {
      position: relative;
      width: 100%;
      max-width: 700px; /* limit width on large screens */
      padding-top: 61.5%; /* keeps aspect ratio (430/700 ≈ 0.615) */
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      border-radius: 10px;
      overflow: hidden;
    }
    .iframe-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
      border-radius: 10px;
    }
  </style>
</head>
<body>
  <div class="iframe-container">
    <iframe 
      src="https://vikingf1le.us.to/f/CopUxgSPv4" 
      allowfullscreen>
    </iframe>
  </div>
</body>
</html>