Documentation

Introduction

Begin your 2026世界杯 journey. Access high-definition live streams and real-time match data to stay connected with every moment of the tournament. Explore team insights and expert analyses.

Getting Started

Dive into the 2026世界杯 experience. Our platform provides the tools and information you need to follow your favorite teams, understand match dynamics, and enjoy comprehensive coverage.

CSS

To enable core styling, include the primary stylesheet in your document's <head> section before any other CSS files.

<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" />

JS

To ensure all interactive features function correctly, integrate essential JavaScript files. Place the following script tags near the end of your page, just before the closing </body> tag. Ensure jQuery is loaded first, followed by the platform's JavaScript plugins.

<script src="js/main.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>

Core Setup

For optimal performance and responsive design, ensure your pages adhere to modern web standards. Utilize the HTML5 doctype and include the viewport meta tag for seamless adaptation across all devices. A typical page structure is provided below.

HTML Structure
<!doctype html>
<html lang="en">
    <head>

        <meta charset="utf-8" />
        <title>2026世界杯 - Live Streaming Official Website</title>
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <meta name="description" content="Site description" />
        <meta name="keywords" content="Your tags" />

        <!-- favicon icon -->
        <link rel="shortcut icon" href="images/favicon.ico">

        <!-- Bootstrap -->
        <link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" />

        <!-- Main css -->
        <link href="css/style.css" rel="stylesheet" type="text/css" />
    
    </head>

    <body>

        <!-- Loader Start -->
        <div id="#--------">
            --------
            --------
        </div>
        <!-- Loader End -->

        <!-- Navbar Start -->
        <header>
            <div class="--------">
                --------
                --------
                --------
                --------
            </div>
        </header>
        <!-- Navbar End -->

        <!-- Hero Start -->
        <section class="--------">
            <div class="--------">
                --------
                --------
                --------
                --------
            </div>
        </section>
        <!-- Hero End -->

        <!-- Footer Start -->
        <footer>
            <div class="--------">
                --------
                --------
                --------
                --------
            </div>
        </footer>
        <!-- Footer End -->

        <!-- Back To Home Start -->
        <a href="#" class="--------" id="#--------">
            --------
            --------
        </a>
        <!-- Back To Home End -->

        <!-- Javascript Start -->
        <script src="js/jquery-3.4.1.min.js"></script>
        <script src="js/bootstrap.bundle.min.js"></script>
        --------
        --------
        --------
        <script src="js/app.js"></script>
        <!-- Javascript End -->
    </body>
</html>
                        
RTL Support
RTL Support:

To activate Right-to-Left (RTL) language support, replace the main stylesheet reference with the dedicated RTL version.

Dark Mode
Dark Mode:

To enable Dark Mode for a visually comfortable experience, switch the stylesheet reference to the dark mode version.

Dark RTL Mode:

Combine Dark Mode and RTL support by using the specific stylesheet for Dark RTL mode.

Menu
Menu Alignment: Center to Right

To align the navigation menu to the right side from the center, append the class 'nav-right' to the menu container.

Menu Alignment: Center to Left

To align the navigation menu to the left side from the center, append the class 'nav-left' to the menu container.

Menu Style: Light with Center

For a light navigation theme with a centered menu, apply the 'nav-light' class to the menu container.

Menu Style: Light with Right

To achieve a light navigation theme with a right-aligned menu, combine 'nav-right' and 'nav-light' classes with the menu container.

Menu Style: Light with Left

For a light navigation theme with a left-aligned menu, use 'nav-left' and 'nav-light' classes with the menu container.