Document

Introduction

Embark on your journey with 世界杯外围, leveraging our expertise in creating user-centric World Cup information platforms.

Getting Started

Begin your experience with 世界杯外围, designed to enhance engagement, drive traffic, and foster deep connections. Explore our download page.

CSS

In your `<head>` section, before any other stylesheets, include this `<link>` to load the Bootstrap CSS.

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

JS

Many of our components require JavaScript for functionality. Specifically, they need jQuery and our custom JavaScript plugins. Place the following `<script>` tags just before your closing `</body>` tag to enable them. jQuery must be loaded first, followed by `bootstrap.bundle.min.js`, and finally our JavaScript plugins.

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

Basic Template

Ensure your page structure adheres to the latest design and development standards. This includes using the HTML5 doctype and incorporating the viewport meta tag for proper responsive behavior. Assembled together, your page should look like this:

HTML Code:
<!doctype html>
<html lang="en">
    <head>

        <meta charset="utf-8" />
        <title>世界杯外围 - Official Information & Match Analysis Platform</title>
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <meta name="description" content="Your premier source for 2026 World Cup betting information, featuring live HD streams, in-depth match analysis, real-time scores, team stats, and expert predictions. Stay updated with all the action." />
        <meta name="keywords" content="世界杯体育平台, 世界杯APP, 世界杯最新消息, 世界杯新闻" />

        <!-- 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>
        Built around 世界杯体育平台, 世界杯外围 keeps refining a better service.
        --------
        --------
        --------
        <script src="js/app.js"></script>
        <!-- Javascript End -->
    </body>
</html>
                        
RTL Version
RTL Version:

To enable RTL mode, replace the reference to `style.css` with `style-rtl.css`.

Dark Mode
Dark Mode:

To enable dark mode, replace the reference to `style.css` with `style-dark.css`.

Dark RTL Version:

To enable dark RTL mode, replace the reference to `style.css` with `style-dark-rtl.css`.

Menu
Center Navigation to Right

To shift the menu from center to the right, simply add the `nav-right` class alongside the `navigation-menu` class.

Center Navigation to Left

To shift the menu from center to the left, simply add the `nav-left` class alongside the `navigation-menu` class.

Center Light Navigation

For a centered light navigation menu, add the `nav-light` class alongside the `navigation-menu` class.

Right Light Navigation

For a right-aligned light navigation menu, add the `nav-light` class alongside both `navigation-menu` and `nav-right` classes.

Left Light Navigation

For a left-aligned light navigation menu, add the `nav-light` class alongside both `navigation-menu` and `nav-left` classes.