Documentation

Introduction

Begin integrating with the 欧博平台. Launch your data feeds and leverage our expertise in sports data aggregation and delivery to power your applications.

Platform Integration Guide

Start utilizing the 欧博APP for seamless access to real-time sports information. Head to the API documentation page for detailed integration steps.

CSS

Include the core stylesheet link in your HTML's <head> section to ensure proper rendering of our platform elements.

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

JS

Many platform features require JavaScript for dynamic functionality. Ensure jQuery and our custom scripts are loaded. Place the following script tags near the end of your pages, before the closing </body> tag, for optimal performance. jQuery must be loaded first, followed by necessary platform scripts.

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

Core Components

Ensure your implementation adheres to modern web standards. Utilize an HTML5 doctype and a viewport meta tag for responsive design. A typical page structure would include these essential elements.

Basic Structure:
<!doctype html>
<html lang="en">
    <head>

        <meta charset="utf-8" />
        <title> Landrick - Saas & Software Landing Page Template </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>
                        
Right-to-Left Support
RTL Mode:

To enable Right-to-Left (RTL) display, replace the primary stylesheet reference with the RTL-specific CSS file.

Dark Theme
Dark Mode:

To activate Dark Mode, substitute the default stylesheet with the dark theme CSS file.

Dark RTL Mode:

For a Dark Mode RTL experience, replace the standard stylesheet with the dark RTL variant.

Menu
Menu Alignment: Center to Right

To align the navigation menu to the right side, append the `nav-right` class alongside the `navigation-menu` class.

Menu Alignment: Center to Left

To align the navigation menu to the left side, append the `nav-left` class alongside the `navigation-menu` class.

Menu Style: Light with Center

For a light-themed navigation menu centered on the page, use the `nav-light` class in conjunction with `navigation-menu`.

Menu Style: Light with Right

To achieve a light-themed navigation menu aligned to the right, apply `navigation-menu`, `nav-right`, and `nav-light` classes.

Menu Style: Light with Left

To achieve a light-themed navigation menu aligned to the left, apply `navigation-menu`, `nav-left`, and `nav-light` classes.