I created a child theme "my-theme" . In style.css I wrote nothing just the mandatory details I wrote there.
/*
Theme Name: my-theme
Theme URI: http://example.com/
Description: Child theme for the Twenty Twelve theme
Author: Bhuvnesh
Author URI: http://example.com/about/
Template: my-theme
Version: 0.1.0
*/
All the style rules I am writting in "my-theme/css/style.css" file. Now in index.php I am calling <?php get_header(); ?> this will call header.php now in header.php file I am calling that css file as
<link href="css/style.css" rel="stylesheet" type="text/css" />
but this is not loading my css. same like this I am calling some .js files which are under "my-theme/js/" directory as
<script type="text/javascript" src="js/jquery-1.7.2.min.js"> </script>
this is also not loading.
I know I am making some mistakes to call files or may be in functions.php .
I just copied the full file functions.php of twentytwelve . Is there any mistake I am doing ?
Please tell me what to write in functions.php file and how to call files like js files under js directory .php files under includes directory , images under Images directory.
I searched how to create child theme and it's done but unable to call files.
Please Help me!I will be very thankful to you!!!!

