Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <h1><a href="https://www.fixoyun.net/sayfa/1001-oyun/" target="_blank">1001 Oyun</a></h1>
<iframe class="game-iframe" sandbox="allow-forms allow-pointer-lock allow-same-origin allow-scripts allow-top-navigation" src="https://www.fixoyun.net/sayfa/ruff/eski-frikik.htm" width="900px" height="300px" scrolling="no" frameborder="0" allowfullscreen></iframe>
<h2>En güzel oyunların adresi 1001 oyun sitesi fixoyun.net sunar.</h2>
<h3>Swf uzantılı binlerce oyunu sorunsuz bir şekilde oynamak için sitemizi ziyaret edebilirsiniz. Poki Oyun denildiğinde akla ilk gelen en iyi oyunların listesi fixoyun adresinde yer almaktadır. Bizde sizin için en güzel oyunları tek bir sayfada sorun yaşamadan oynayacağınız bir şekilde hazırladık. </h3>
<h4>Burada sizlere eski .swf uzantılı dosyaların nasıl web tarayıcı üzerinden oynatabileceğinize dair çeşitli kodlar sunulmuştur. Ruffle.rs adresinden daha detaylı bilgiye ulaşabilirsiniz. Ruffle.js ve .Wasm dosyanını dizine yüklemeniz gerekiyor.</h4>

<script src="https://www.fixoyun.net/sayfa/ruff/ruffle.js"></script>
              
            
!

CSS

              
                body {
  font-family: system-ui;
  background: #f06d06;
  color: white;
  text-align: center;
}
.game-iframe {
  border-radius: 10px;
}

              
            
!

JS

              
                document.getElementsByTagName("h1")[0].style.fontSize = "2vw";

window.RufflePlayer = window.RufflePlayer || {};
window.addEventListener("load", (event) => {
  const ruffle = window.RufflePlayer.newest();
  const player = ruffle.createPlayer();
  const container = document.getElementById("container");
  container.appendChild(player);
  player.load("https://www.fixoyun.net/sayfa/ruff/frikik.swf");
  player.style.width = "100%";
  player.style.height = "100vh";
});

              
            
!
999px

Console