@parveen.. The problem is the fact that your theme ‘bella ‘ doesn’t have footer enabled.
Fix:
Open the file footer.php in the themes/bella directory.
Replace:
</div> <!-- FOOTER -->
</body>
</html>
by
</div> <!-- FOOTER -->
<?php wp_footer(); ?>
</body>
</html>
And you will be all set.
Thanks.