Add Bootstrap css, Bootstrap js, jQuery, jQuery form to wordpress theme or plugin

function load_css_js(){

    wp_enqueue_style( 'AJDWP_bootstrap_css', 'https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css' );    
    wp_enqueue_script( 'AJDWP_bootstrap_js', 'https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js' );    
    wp_enqueue_script( 'jquery');
    wp_enqueue_script('jquery-form');
    wp_enqueue_script( 'AJDWP_jquery-3.6.0', 'https://code.jquery.com/jquery-3.6.0.min.js' );
    wp_enqueue_script( 'AJDWP_bootstrap-js-4.3.1', 'https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js' );
    wp_enqueue_script( 'AJDWP_bootstrap-bundle-4.3.1', 'https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.bundle.min.js' );
    
}
add_action( 'wp_enqueue_scripts', 'load_css_js' );

It is Working Properly 🙂