Skip to content
Snippets Groups Projects
Select Git revision
  • 9bfa77dc65db00cbb847763196fd679412a3192c
  • master default protected
  • 1.31
  • 4.38.8
  • 4.38.7
  • 4.38.6
  • 4.38.5
  • 4.38.4
  • 4.38.3
  • 4.38.2
  • 4.38.1
  • 4.38.0
  • 4.37.2
  • 4.37.1
  • 4.37.0
  • 4.36.0
  • 4.35.0
  • 4.34.1
  • 4.34.0
  • 4.33.1
  • 4.33.0
  • 4.32.2
  • 4.32.1
23 results

260.html

  • 243-test2.html 984 B
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>new iframe control #243</title>
        <style>
            body {
                font-family: Arial, sans-serif;
                font-size: 16px;
                line-height: 1.5;
                margin: 0;
                padding: 0;
                background-color: #77d804;
    
            }
    
            main {
                width: 200px;
                height: 1200px;
                background-color: #ede5eb;
            }
    
        </style>
    </head>
    <body>
    <main>TEST 2
        <ul>
            <li><a href="./243-test1.html" target="_blank">Doc 1 (_blank)</a>
            <li><a href="./243-test1.html" target="_self">Doc 1 (_self)</a>
            <li><a href="./243-test1.html" target="_parent">Doc 1 (_parent)</a>
            <li><a href="./243-test1.html" target="_top">Doc 1 (_top)</a>
            <li><a href="./243-test1.html" target="iframe">Doc 1 (iframe)</a>
        </ul>
    
    
    </main>
    </body>
    </html>