Load custom JavaScript and CSS files in your theme.
add_action('wp_enqueue_scripts', 'codebykp_enqueue_custom_scripts');
function codebykp_enqueue_custom_scripts() {
wp_enqueue_style('custom-style', get_template_directory_uri() . '/css/custom-style.css');
wp_enqueue_script('custom-script', get_template_directory_uri() . '/js/custom-script.js', array('jquery'), null, true);
}