How to enqueue stylesheets?

Please edit the path for the style sheet

And put the code in functions.php

function my_theme_scripts() {
wp_enqueue_style('style', get_stylesheet_directory_uri() . '/css/style.css',false,'all' );
}
add_action( 'wp_enqueue_scripts', 'my_theme_scripts' );

tech