praneeth87,
Take a look at the template files in the ‘views’ directory of the plugin. You’ll see many ‘do_action()’ statements, which will allow you to inject your own custom code in different places.
For example, in ‘views/list/loop.php’ you’ll see the following code:
do_action( 'tribe_events_inside_before_loop' );
If you add the following code into your theme’s functions.php file, it will allow you to hook into that action to output your own code: https://gist.github.com/ckpicker/7bc941f32f1abdb1c241
That should point you in the right direction, but let me know if you have further questions. Thanks! ๐
-Casey-