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

              
                <!DOCTYPE html>
<html lang="tr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Olabahis: Güvenli ve Eğlenceli Bahis Deneyimi</title>
  <meta name="google-site-verification" content="QCoqkv25BtHjfxrO3_Ft7pOQRJ68TjOulRcirSuGDyg" />
        <!-- <link rel="canonical" href="https://www.olabahis.live/" /> -->
    <!-- Google Fonts -->
    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap" rel="stylesheet">
    <!-- Font Awesome CDN -->
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
    <style>
        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 0;
        }

        .header {
            background-color: #000;
            padding: 10px;
            text-align: center;
        }

        .header .logo {
            font-size: 36px;
            font-weight: bold;
            font-family: 'Poppins', sans-serif;
            color: #e79a08;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .container {
            max-width: 800px;
            margin: 20px auto;
            background-color: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
        }

        h1 {
            text-align: center;
            color: #e79a08;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
        }

        p {
            text-align: center;
            color: #555;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
        }

        .btn {
            display: block;
            width: 100%;
            background-color: #e79a08;
            color: white;
            text-align: center;
            padding: 10px 0;
            text-decoration: none;
            border-radius: 5px;
            font-size: 18px;
            margin-bottom: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .info-box {
            background-color: #f9f9f9;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            border: 1px solid #ddd;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .info-box h3 {
            color: #e79a08;
            margin-bottom: 10px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
        }

        .info-box i {
            color: #e79a08;
            margin-right: 8px;
        }

        .footer {
            text-align: center;
            margin-top: 20px;
            font-size: 14px;
            color: #fff;
            background-color: #e79a08;
            padding: 10px 0;
            box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
        }
    </style>
</head>
<body>

    <div class="header">
        <div class="logo">Olabahis Giriş</div>
    </div>

    <div class="container">
        <h1>Olabahis: Güvenli ve Eğlenceli Bahis Deneyimi</h1>
        <p>Olabahis, bahis dünyasında kendine sağlam bir yer edinen güvenilir bir platformdur. Güncel promosyonlar ve avantajlı kampanyalarla, kullanıcılarına kazanç dolu bir deneyim sunuyor.</p>
        
        <a href="https://t2m.io/olabhsgit" class="btn" target="_blank">Olabahis'e Giriş Yap</a>

        <div class="info-grid">
            <div class="info-box">
                <h3><i class="fas fa-lock"></i>Güvenli Ödeme Yöntemleri</h3>
                <p>Kullanıcıların güvenliği için lisanslı ödeme yöntemleri sunulmaktadır. Kazançlarınız anında hesabınıza aktarılır.</p>
            </div>
            <div class="info-box">
                <h3><i class="fas fa-link"></i>Güncel Giriş Adresi</h3>
                <p>Kullanıcılarına sorunsuz bir erişim deneyimi sunmak için giriş adresi düzenli olarak güncellenmektedir.</p>
            </div>
            <div class="info-box">
                <h3><i class="fas fa-futbol"></i>Çeşitli Oyun Seçenekleri</h3>
                <p>Canlı casino, spor bahisleri ve slot oyunları gibi birçok seçenekle eğlencenin tadını çıkarın.</p>
            </div>
            <div class="info-box">
                <h3><i class="fas fa-headset"></i>7/24 Destek Hizmeti</h3>
                <p>Olabahis'in destek ekibi, 7 gün 24 saat boyunca her türlü sorunuz için hazır.</p>
            </div>
        </div>
    </div>

    <div class="footer">
        © 2025 Olabahis - Tüm hakları saklıdır
    </div>

</body>
</html>

              
            
!

CSS

              
                body {
  font-family: system-ui;
  background: #f06d06;
  color: white;
  text-align: center;
}
              
            
!

JS

              
                
              
            
!
999px

Console