/** * ultrabootstrap functions and definitions * * @package ultrabootstrap */ if ( ! function_exists( 'ultrabootstrap_setup' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. */ function ultrabootstrap_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on ultrabootstrap, use a find and replace * to change 'ultrabootstrap' to the name of your theme in all the template files */ load_theme_textdomain( 'ultrabootstrap', get_template_directory() . '/languages' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * Enable support for Post Thumbnails on posts and pages. * * @link http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails */ add_theme_support( 'post-thumbnails' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'ultrabootstrap' ), 'secondary' => esc_html__( 'Footer Menu', 'ultrabootstrap' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); /* * Enable support for Post Formats. * See http://codex.wordpress.org/Post_Formats */ add_theme_support( 'custom-logo', array( 'height' => 45, 'width' => 250, 'flex-width' => true, )); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'ultrabootstrap_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); add_theme_support( "custom-header", array( 'default-color' => 'ffffff', 'default-image' => '', ) ); /* * Enable support for Selective Refresh for Widgets. * See https://make.wordpress.org/core/2016/11/10/visible-edit-shortcuts-in-the-customizer-preview/ */ add_theme_support( 'customize-selective-refresh-widgets' ); add_editor_style() ; } endif; // ultrabootstrap_setup add_action( 'after_setup_theme', 'ultrabootstrap_setup' ); /** * Enqueue scripts and styles. */ function ultrabootstrap_scripts() { wp_enqueue_style( 'ultrabootstrap-bootstrap', get_template_directory_uri().'/css/bootstrap.css' ); wp_enqueue_style( 'ultrabootstrap-fontawesome', get_template_directory_uri().'/css/font-awesome.css' ); wp_enqueue_style( 'ultrabootstrap-googlefonts', '//fonts.googleapis.com/css?family=Roboto:400,300,700'); wp_enqueue_style( 'ultrabootstrap-style', get_stylesheet_uri() ); if(is_rtl()) { wp_enqueue_style( 'ultrabootstrap-rtl', get_template_directory_uri().'/css/rtl.css' ); wp_enqueue_style( 'ultrabootstrap-css-rtl', get_template_directory_uri().'/css/bootstrap-rtl.css' ); wp_enqueue_script( 'ultrabootstrap-js-rtl', get_template_directory_uri() . '/js/bootstrap.rtl.js', array(), '1.0.0', true ); } wp_enqueue_script('jquery'); wp_enqueue_script( 'ultrabootstrap-bootstrap', get_template_directory_uri() . '/js/bootstrap.js', array(), '1.0.0', true ); wp_enqueue_script( 'ultrabootstrap-scripts', get_template_directory_uri() . '/js/script.js', array(), '1.0.0', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'ultrabootstrap_scripts' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ if ( ! isset( $content_width ) ) $content_width = 900; function ultrabootstrap_content_width() { $GLOBALS['content_width'] = apply_filters( 'ultrabootstrap_content_width', 640 ); } add_action( 'after_setup_theme', 'ultrabootstrap_content_width', 0 ); function ultrabootstrap_filter_front_page_template( $template ) { return is_home() ? '' : $template; } add_filter( 'front_page_template', 'ultrabootstrap_filter_front_page_template' ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function ultrabootstrap_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'ultrabootstrap' ), 'id' => 'sidebar-1', 'description' => '', 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => __('Footer One','ultrabootstrap'), 'id' => 'footer-1', 'description' => __('Footer First Widget','ultrabootstrap'), 'before_widget' => '<div id="%1$s" class="widget col-md-3 col-sm-6 %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => __('Footer Two','ultrabootstrap'), 'id' => 'footer-2', 'description' => __('Footer Second Widget','ultrabootstrap'), 'before_widget' => '<div id="%1$s" class="widget col-md-3 col-sm-6 %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => __('Footer There','ultrabootstrap'), 'id' => 'footer-3', 'description' => __('Footer Third Widget','ultrabootstrap'), 'before_widget' => '<div id="%1$s" class="widget col-md-3 col-sm-6 %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => __('Footer Four','ultrabootstrap'), 'id' => 'footer-4', 'description' => __('Footer Four Widget','ultrabootstrap'), 'before_widget' => '<div id="%1$s" class="widget col-md-3 col-sm-6 %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); } add_action( 'widgets_init', 'ultrabootstrap_widgets_init' ); /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/class.php'; //require get_template_directory() . '/inc/wp_bootstrap_navwalker.php'; /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Custom functions that act independently of the theme templates. */ require get_template_directory() . '/inc/extras.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Load Jetpack compatibility file. */ require get_template_directory() . '/inc/jetpack.php'; // Register Custom Navigation Walker require get_template_directory() . '/inc/wp_bootstrap_navwalker.php'; /** * Load TGM plugin */ require get_template_directory() . '/inc/class-tgm-plugin-activation.php'; /* Recommended plugin using TGM */ add_action( 'tgmpa_register', 'ultrabootstrap_register_plugins'); if( !function_exists('ultrabootstrap_register_plugins') ) { function ultrabootstrap_register_plugins() { /** * Array of plugin arrays. Required keys are name and slug. * If the source is NOT from the .org repo, then source is also required. */ $plugins = array( array( 'name' => 'One Click Demo Import', // The plugin name. 'slug' => 'one-click-demo-import', // The plugin slug (typically the folder name). 'required' => false, // If false, the plugin is only 'recommended' instead of required. ), array( 'name' => 'Contact Form 7', // The plugin name. 'slug' => 'contact-form-7', // The plugin slug (typically the folder name). 'required' => false, // If false, the plugin is only 'recommended' instead of required. ), ); /* * Array of configuration settings. Amend each line as needed. * * TGMPA will start providing localized text strings soon. If you already have translations of our standard * strings available, please help us make TGMPA even better by giving us access to these translations or by * sending in a pull-request with .po file(s) with the translations. * * Only uncomment the strings in the config array if you want to customize the strings. */ $config = array( 'id' => 'tgmpa', // Unique ID for hashing notices for multiple instances of TGMPA. 'default_path' => '', // Default absolute path to bundled plugins. 'menu' => 'tgmpa-install-plugins', // Menu slug. 'parent_slug' => 'themes.php', // Parent menu slug. 'capability' => 'edit_theme_options', // Capability needed to view plugin install page, should be a capability associated with the parent menu used. 'has_notices' => true, // Show admin notices or not. 'dismissable' => true, // If false, a user cannot dismiss the nag message. 'dismiss_msg' => '', // If 'dismissable' is false, this message will be output at top of nag. 'is_automatic' => false, // Automatically activate plugins after installation or not. 'message' => '', // Message to output right before the plugins table. ); tgmpa( $plugins, $config ); } } /* Ultrabootstrap Demo importer */ add_filter( 'pt-ocdi/import_files', 'ultrabootstrap_import_demo_data' ); if ( ! function_exists( 'ultrabootstrap_import_demo_data' ) ) { function ultrabootstrap_import_demo_data() { return array( array( 'import_file_name' => __('Default Demo','ultrabootstrap'), 'categories' => array( 'Default', 'Blog' ), 'local_import_file' => trailingslashit( get_template_directory() ) . 'demo/default/demo-content.xml', 'local_import_widget_file' => trailingslashit( get_template_directory() ) . 'demo/default/widgets.json', 'local_import_customizer_file' => trailingslashit( get_template_directory() ) . 'demo/default/customizer.dat', 'import_preview_image_url' => 'https://phantomthemes.com/demo/ultrabootstrap/wp-content/themes/ultrabootstrap/screenshot.png', 'preview_url' => 'https://phantomthemes.com/view?theme=UltraBootstrap', ), ); } } add_action( 'pt-ocdi/after_import', 'ultrabootstrap_after_import' ); if ( ! function_exists( 'ultrabootstrap_after_import' ) ) { function ultrabootstrap_after_import( $selected_import ) { $importer_name = __('Default Demo','ultrabootstrap'); if ( $importer_name === $selected_import['import_file_name'] ) { //Set Menu $top_menu = get_term_by('name', 'Primary Menu', 'nav_menu'); $footer_menu= get_term_by('name', 'Footer Menu', 'nav_menu'); set_theme_mod( 'nav_menu_locations' , array( 'primary' => $top_menu->term_id, 'secondary' => $footer_menu->term_id, ) ); //Set Front page if( get_option('page_on_front') === '0' && get_option('page_for_posts') === '0' ) { $page = get_page_by_title( 'Home'); //$blog = get_page_by_title( 'Blog'); if ( isset( $page->ID ) ) { update_option( 'show_on_front', 'page' ); update_option( 'page_on_front', $page->ID ); //update_option('page_for_posts', $blog->ID); } } } } } add_filter( 'pt-ocdi/disable_pt_branding', '__return_true' ); /******* the_breadcrumb *********/ function the_breadcrumb() { $showOnHome = 0; // 1 - show breadcrumbs on the homepage, 0 - don't show $delimiter = '<span class="dot">•</span>'; // delimiter between crumbs $home = 'Home'; // text for the 'Home' link $showCurrent = 1; // 1 - show current post/page title in breadcrumbs, 0 - don't show $before = '<span class="current">'; // tag before the current crumb $after = '</span>'; // tag after the current crumb global $post; $homeLink = get_bloginfo('url'); if (is_home() || is_front_page()) { if ($showOnHome == 1) { echo '<div id="crumbs"><a href="' . $homeLink . '">' . $home . '</a></div>'; } } else { echo '<div id="crumbs"><a href="' . $homeLink . '">' . $home . '</a> ' . $delimiter . ' '; if (is_category()) { $thisCat = get_category(get_query_var('cat'), false); if ($thisCat->parent != 0) { echo get_category_parents($thisCat->parent, true, ' ' . $delimiter . ' '); } echo $before . 'Archive by category "' . single_cat_title('', false) . '"' . $after; } elseif (is_search()) { echo $before . 'Search results for "' . get_search_query() . '"' . $after; } elseif (is_day()) { echo '<a href="' . get_year_link(get_the_time('Y')) . '">' . get_the_time('Y') . '</a> ' . $delimiter . ' '; echo '<a href="' . get_month_link(get_the_time('Y'), get_the_time('m')) . '">' . get_the_time('F') . '</a> ' . $delimiter . ' '; echo $before . get_the_time('d') . $after; } elseif (is_month()) { echo '<a href="' . get_year_link(get_the_time('Y')) . '">' . get_the_time('Y') . '</a> ' . $delimiter . ' '; echo $before . get_the_time('F') . $after; } elseif (is_year()) { echo $before . get_the_time('Y') . $after; } elseif (is_single() && !is_attachment()) { if (get_post_type() != 'post') { $post_type = get_post_type_object(get_post_type()); $slug = $post_type->rewrite; echo '<a href="' . $homeLink . '/' . $slug['slug'] . '/">' . $post_type->labels->singular_name . '</a>'; if ($showCurrent == 1) { echo ' ' . $delimiter . ' ' . $before . get_the_title() . $after; } } else { $cat = get_the_category(); $cat = $cat[0]; $cats = get_category_parents($cat, true, ' ' . $delimiter . ' '); if ($showCurrent == 0) { $cats = preg_replace("#^(.+)\s$delimiter\s$#", "$1", $cats); } echo $cats; if ($showCurrent == 1) { echo $before . get_the_title() . $after; } } } elseif (!is_single() && !is_page() && get_post_type() != 'post' && !is_404()) { $post_type = get_post_type_object(get_post_type()); echo $before . $post_type->labels->singular_name . $after; } elseif (is_attachment()) { $parent = get_post($post->post_parent); $cat = get_the_category($parent->ID); $cat = $cat[0]; echo get_category_parents($cat, true, ' ' . $delimiter . ' '); echo '<a href="' . get_permalink($parent) . '">' . $parent->post_title . '</a>'; if ($showCurrent == 1) { echo ' ' . $delimiter . ' ' . $before . get_the_title() . $after; } } elseif (is_page() && !$post->post_parent) { if ($showCurrent == 1) { echo $before . get_the_title() . $after; } } elseif (is_page() && $post->post_parent) { $parent_id = $post->post_parent; $breadcrumbs = array(); while ($parent_id) { $page = get_page($parent_id); $breadcrumbs[] = '<a href="' . get_permalink($page->ID) . '">' . get_the_title($page->ID) . '</a>'; $parent_id = $page->post_parent; } $breadcrumbs = array_reverse($breadcrumbs); for ($i = 0; $i < count($breadcrumbs); $i++) { echo $breadcrumbs[$i]; if ($i != count($breadcrumbs)-1) { echo ' ' . $delimiter . ' '; } } if ($showCurrent == 1) { echo ' ' . $delimiter . ' ' . $before . get_the_title() . $after; } } elseif (is_tag()) { echo $before . 'Posts tagged "' . single_tag_title('', false) . '"' . $after; } elseif (is_author()) { global $author; $userdata = get_userdata($author); echo $before . 'Articles posted by ' . $userdata->display_name . $after; } elseif (is_404()) { echo $before . 'Error 404' . $after; } if (get_query_var('paged')) { if (is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author()) { echo ' ('; } echo '<span class="dot">•</span><span class="current">'. __('Page') . ' ' . get_query_var('paged').'</span>'; if (is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author()) { echo ')'; } } echo '</div>'; } } // end the_breadcrumb() <!DOCTYPE html> <html lang="en-US"> <head> <meta charset="utf-8"> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="http://gmpg.org/xfn/11"> <link rel="pingback" href="https://www.nandhaarts.org/xmlrpc.php"> <link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600&display=swap" rel="stylesheet"> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> <link href="https://www.nandhaarts.org/wp-content/themes/nandha-theme/style.css"> <div id="fb-root"></div> <script async defer crossorigin="anonymous" src="https://connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v14.0" nonce="nHi15Bl4"></script> <meta name='robots' content='max-image-preview:large' /> <!-- This site is optimized with the Yoast SEO Premium plugin v14.9 - https://yoast.com/wordpress/plugins/seo/ --> <meta name="robots" content="noindex, follow" /> <meta property="og:locale" content="en_US" /> <meta property="og:title" content="Page not found - Nandha Arts & Science College" /> <meta property="og:site_name" content="Nandha Arts & Science College" /> <script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebSite","@id":"https://www.nandhaarts.org/#website","url":"https://www.nandhaarts.org/","name":"Nandha Arts & Science College","description":"","potentialAction":[{"@type":"SearchAction","target":"https://www.nandhaarts.org/?s={search_term_string}","query-input":"required name=search_term_string"}],"inLanguage":"en-US"}]}</script> <!-- / Yoast SEO Premium plugin. --> <script type="text/javascript"> /* <![CDATA[ */ window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/www.nandhaarts.org\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.5.3"}}; /*! This file is auto-generated */ !function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!n(e,"\ud83d\udc26\u200d\u2b1b","\ud83d\udc26\u200b\u2b1b")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings); /* ]]> */ </script> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wp-block-library-css' href='https://www.nandhaarts.org/wp-includes/css/dist/block-library/style.min.css?ver=6.5.3' type='text/css' media='all' /> <style id='classic-theme-styles-inline-css' type='text/css'> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} </style> <style id='global-styles-inline-css' type='text/css'> body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}body .is-layout-grid{display: grid;}body .is-layout-grid > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} .wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} .wp-block-pullquote{font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='wpos-magnific-style-css' href='https://www.nandhaarts.org/wp-content/plugins/album-and-image-gallery-plus-lightbox/assets/css/magnific-popup.css?ver=1.6.3' type='text/css' media='all' /> <link rel='stylesheet' id='wpos-slick-style-css' href='https://www.nandhaarts.org/wp-content/plugins/album-and-image-gallery-plus-lightbox/assets/css/slick.css?ver=1.6.3' type='text/css' media='all' /> <link rel='stylesheet' id='aigpl-public-css-css' href='https://www.nandhaarts.org/wp-content/plugins/album-and-image-gallery-plus-lightbox/assets/css/aigpl-public.css?ver=1.6.3' type='text/css' media='all' /> <link rel='stylesheet' id='wpsm_counter-font-awesome-front-css' href='https://www.nandhaarts.org/wp-content/plugins/counter-number-showcase/assets/css/font-awesome/css/font-awesome.min.css?ver=6.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='wpsm_counter_bootstrap-front-css' href='https://www.nandhaarts.org/wp-content/plugins/counter-number-showcase/assets/css/bootstrap-front.css?ver=6.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='wpsm_counter_column-css' href='https://www.nandhaarts.org/wp-content/plugins/counter-number-showcase/assets/css/counter-column.css?ver=6.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='tss-css' href='https://www.nandhaarts.org/wp-content/plugins/testimonial-slider-and-showcase/assets/css/wptestimonial.css?ver=2.3.1' type='text/css' media='all' /> <link rel='stylesheet' id='wonderplugin-slider-css-css' href='https://www.nandhaarts.org/wp-content/plugins/wonderplugin-slider-lite/engine/wonderpluginsliderengine.css?ver=13.6' type='text/css' media='all' /> <link rel='stylesheet' id='megamenu-css' href='https://www.nandhaarts.org/wp-content/uploads/maxmegamenu/style.css?ver=34e25e' type='text/css' media='all' /> <link rel='stylesheet' id='dashicons-css' href='https://www.nandhaarts.org/wp-includes/css/dashicons.min.css?ver=6.5.3' type='text/css' media='all' /> <link rel='stylesheet' id='megamenu-genericons-css' href='https://www.nandhaarts.org/wp-content/plugins/megamenu-pro/icons/genericons/genericons/genericons.css?ver=2.1.1' type='text/css' media='all' /> <link rel='stylesheet' id='megamenu-fontawesome-css' href='https://www.nandhaarts.org/wp-content/plugins/megamenu-pro/icons/fontawesome/css/font-awesome.min.css?ver=2.1.1' type='text/css' media='all' /> <link rel='stylesheet' id='megamenu-fontawesome5-css' href='https://www.nandhaarts.org/wp-content/plugins/megamenu-pro/icons/fontawesome5/css/all.min.css?ver=2.1.1' type='text/css' media='all' /> <link rel='stylesheet' id='dearpdf-style-css' href='https://www.nandhaarts.org/wp-content/plugins/dearpdf-lite/assets/css/dearpdf.min.css?ver=2.0.38' type='text/css' media='all' /> <link rel='stylesheet' id='tablepress-default-css' href='https://www.nandhaarts.org/wp-content/plugins/tablepress/css/build/default.css?ver=2.1.2' type='text/css' media='all' /> <!--n2css--><script type="text/javascript" src="https://www.nandhaarts.org/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://www.nandhaarts.org/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script> <script type="text/javascript" src="https://www.nandhaarts.org/wp-content/plugins/wonderplugin-slider-lite/engine/wonderpluginsliderskins.js?ver=13.6" id="wonderplugin-slider-skins-script-js"></script> <script type="text/javascript" src="https://www.nandhaarts.org/wp-content/plugins/wonderplugin-slider-lite/engine/wonderpluginslider.js?ver=13.6" id="wonderplugin-slider-script-js"></script> <link rel="https://api.w.org/" href="https://www.nandhaarts.org/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.nandhaarts.org/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.5.3" /> <script data-cfasync="false"> var dearPdfLocation = "https://www.nandhaarts.org/wp-content/plugins/dearpdf-lite/assets/"; var dearpdfWPGlobal = [];</script><link rel="icon" href="https://www.nandhaarts.org/wp-content/uploads/2022/08/cropped-nandhaarts_fav-32x32.jpg" sizes="32x32" /> <link rel="icon" href="https://www.nandhaarts.org/wp-content/uploads/2022/08/cropped-nandhaarts_fav-192x192.jpg" sizes="192x192" /> <link rel="apple-touch-icon" href="https://www.nandhaarts.org/wp-content/uploads/2022/08/cropped-nandhaarts_fav-180x180.jpg" /> <meta name="msapplication-TileImage" content="https://www.nandhaarts.org/wp-content/uploads/2022/08/cropped-nandhaarts_fav-270x270.jpg" /> <style type="text/css">/** Mega Menu CSS: fs **/</style> </head> <body class="error404 mega-menu-max-mega-menu-1 mega-menu-max-mega-menu-2 mega-menu-max-mega-menu-3 mega-menu-max-mega-menu-4 mega-menu-max-mega-menu-5 mega-menu-max-mega-menu-6 mega-menu-max-mega-menu-7 mega-menu-max-mega-menu-8 mega-menu-max-mega-menu-9 mega-menu-max-mega-menu-10 mega-menu-max-mega-menu-11 mega-menu-max-mega-menu-12 mega-menu-max-mega-menu-13 mega-menu-max-mega-menu-14 mega-menu-max-mega-menu-15 mega-menu-max-mega-menu-16 mega-menu-max-mega-menu-17 mega-menu-max-mega-menu-18 mega-menu-max-mega-menu-19 mega-menu-max-mega-menu-20 mega-menu-max-mega-menu-21 mega-menu-max-mega-menu-22 mega-menu-max-mega-menu-23 mega-menu-max-mega-menu-24 mega-menu-max-mega-menu-26 mega-menu-max-mega-menu-27 mega-menu-max-mega-menu-28 mega-menu-max-mega-menu-29 mega-menu-max-mega-menu-30 mega-menu-max-mega-menu-31 mega-menu-max-mega-menu-32 mega-menu-max-mega-menu-33 mega-menu-max-mega-menu-34 mega-menu-max-mega-menu-35"> <header> <div class="themesflat-top"> <div class="container-fluid"> <div class="row"> <div class="col-md-12"> <div class="container-inside"> <div class="content-left text-left"> <ul class="flat-information"> <li><i class="fa fa-envelope"></i><a href="mailto:info@nandhaarts.org">info@nandhaarts.org</a></li> <li><i class="fa fa-phone"></i><a href="tel:+917373724422"> +91 73737 24422</a></li> </ul> </div> <div class="content-right text-right"> <div class="top-bar-menu"> <ul id="menu-top-bar" class="menu"> <li><a href=" https://www.nandhaarts.org/iqac">IQAC</a></li> <li><a href="https://www.nandhaarts.org/nirf/ ">NIRF</a></li> <li><a href="https://www.nandhaarts.org/rti/">RTI</a></li> <li><a href="https://www.nandhaarts.org/aishe/">AISHE</a></li> <li><a href="https://www.nandhaarts.org/scholarship-details/">Scholarship Details</a></li> <!-- <li><a href="#">Grievances</a></li>--> </ul> </div> <a href="https://www.nandhaarts.org/admission-procedure/" target="_blank" class="button-topbar">GET Admission</a> </div> </div> </div> </div> </div> </div> <div class="desktop-header"> <div class="menu-logo"> <div class="container-fluid"> <div class="row"> <div class="col-md-2 col-sm-12 col-xs-12 logo-sec"> <div class="logo"> <a href="https://www.nandhaarts.org/"> <img src="/wp-content/uploads/2022/06/Logo_NASC.png"></a> </div> </div> <div class="col-md-2 col-sm-12 col-xs-12"> <div class="site-tit"> <h1>NANDHA</h1> <h2>ARTS & SCIENCE COLLEGE</h2> </div> </div> <div class="col-md-4 col-sm-12 col-xs-12"> <div class="site-tit"> <h5>(Affiliated to Bharathiar University, Coimbatore) <span>Approved by UGC for 2(f), 12(B) & Re-Accredited by NAAC B+</span></h5> </div> </div> <div class="col-md-4 col-sm-12 col-xs-12"> <div class="logo-right"> <ul> <li><img src="/wp-content/uploads/2022/06/25-years.png"></li> <li><img src="/wp-content/uploads/2022/06/since_logo.jpeg"></li> </ul> </div> </div> </div> </div> </div> <div class="menu-section"> <div class="container-fluid"> <div class="row"> <div class="col-md-12 col-sm-12 col-xs-12 no-padd"> <div class="desktop-menu"> <nav class="navbar navbar-default" role="navigation"> <div id="mega-menu-wrap-primary" class="mega-menu-wrap"><div class="mega-menu-toggle"><div class="mega-toggle-blocks-left"></div><div class="mega-toggle-blocks-center"></div><div class="mega-toggle-blocks-right"><div class='mega-toggle-block mega-menu-toggle-animated-block mega-toggle-block-0' id='mega-toggle-block-0'><button aria-label="Toggle Menu" class="mega-toggle-animated mega-toggle-animated-slider" type="button" aria-expanded="false"> <span class="mega-toggle-animated-box"> <span class="mega-toggle-animated-inner"></span> </span> </button></div></div></div><ul id="mega-menu-primary" class="mega-menu max-mega-menu mega-menu-horizontal mega-no-js" data-event="hover_intent" data-effect="fade_up" data-effect-speed="200" data-effect-mobile="slide_left" data-effect-speed-mobile="400" data-mobile-force-width="false" data-second-click="go" data-document-click="collapse" data-vertical-behaviour="standard" data-breakpoint="0" data-unbind="true" data-mobile-state="collapse_all" data-hover-intent-timeout="300" data-hover-intent-interval="100" data-sticky-enabled="true" data-sticky-desktop="true" data-sticky-mobile="false" data-sticky-offset="0" data-sticky-expand="false" data-sticky-expand-mobile="false" data-sticky-transition="false"><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-home mega-align-bottom-left mega-menu-flyout mega-menu-item-2040' id='mega-menu-item-2040'><a class="mega-menu-link" href="https://www.nandhaarts.org/" tabindex="0">Home</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-menu-item-99' id='mega-menu-item-99'><a class="mega-menu-link" href="https://www.nandhaarts.org/about-us/" aria-haspopup="true" aria-expanded="false" tabindex="0">About us<span class="mega-indicator" tabindex="0" role="button" aria-label="About us submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-107' id='mega-menu-item-107'><a class="mega-menu-link" href="https://www.nandhaarts.org/about-the-college/">About the College</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-113' id='mega-menu-item-113'><a class="mega-menu-link" href="https://www.nandhaarts.org/chairmans-message/">Chairman’s Message</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-112' id='mega-menu-item-112'><a class="mega-menu-link" href="https://www.nandhaarts.org/secretarys-message/">Secretary’s Message</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-122' id='mega-menu-item-122'><a class="mega-menu-link" href="https://www.nandhaarts.org/principals-message/">Principal’s Message</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-128' id='mega-menu-item-128'><a class="mega-menu-link" href="https://www.nandhaarts.org/vision-mission/">Vision & Mission</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-132' id='mega-menu-item-132'><a class="mega-menu-link" href="https://www.nandhaarts.org/motto-objectives/">Motto & Objectives</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-796' id='mega-menu-item-796'><a class="mega-menu-link" href="https://www.nandhaarts.org/college-at-a-glance/">College at a Glance</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-797' id='mega-menu-item-797'><a class="mega-menu-link" href="https://www.nandhaarts.org/mc-members/">MC Members</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-798' id='mega-menu-item-798'><a class="mega-menu-link" href="https://www.nandhaarts.org/milestones/">Milestones</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-799' id='mega-menu-item-799'><a class="mega-menu-link" href="https://www.nandhaarts.org/code-of-conduct/">Code of Conduct</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-800' id='mega-menu-item-800'><a class="mega-menu-link" href="https://www.nandhaarts.org/our-institutions/">Our Institutions</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-801' id='mega-menu-item-801'><a class="mega-menu-link" href="https://www.nandhaarts.org/governing-council/">Governing Council</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-802' id='mega-menu-item-802'><a class="mega-menu-link" href="https://www.nandhaarts.org/oraganogram-chart/">Oraganogram Chart</a></li></ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-menu-item-22' id='mega-menu-item-22'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false" tabindex="0">Academics<span class="mega-indicator" tabindex="0" role="button" aria-label="Academics submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-item-821' id='mega-menu-item-821'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false">Value Added Courses<span class="mega-indicator" tabindex="0" role="button" aria-label="Value Added Courses submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-822' id='mega-menu-item-822'><a class="mega-menu-link" href="https://www.nandhaarts.org/idc/">IDC</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-823' id='mega-menu-item-823'><a class="mega-menu-link" href="https://www.nandhaarts.org/cvac/">CVAC</a></li> </ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-item-824' id='mega-menu-item-824'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false">R&D Cell<span class="mega-indicator" tabindex="0" role="button" aria-label="R&D Cell submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-825' id='mega-menu-item-825'><a class="mega-menu-link" href="https://www.nandhaarts.org/research-funding-committee/">Research Funding Committee</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-826' id='mega-menu-item-826'><a class="mega-menu-link" href="https://www.nandhaarts.org/ethics-committee/">Ethics Committee</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-827' id='mega-menu-item-827'><a class="mega-menu-link" href="https://www.nandhaarts.org/funds-by-cpe-ugc/">Funds by CPE-UGC</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-828' id='mega-menu-item-828'><a class="mega-menu-link" href="https://www.nandhaarts.org/research-policy/">Research Policy</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-829' id='mega-menu-item-829'><a class="mega-menu-link" href="https://www.nandhaarts.org/code-of-ethics/">Code of Ethics</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-830' id='mega-menu-item-830'><a class="mega-menu-link" href="https://www.nandhaarts.org/publications/">Publications</a></li> </ul> </li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-831' id='mega-menu-item-831'><a class="mega-menu-link" href="https://www.nandhaarts.org/admission-procedure/">Admission Procedure</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-832' id='mega-menu-item-832'><a class="mega-menu-link" href="https://www.nandhaarts.org/university-regulations/">University Regulations</a></li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-item-833' id='mega-menu-item-833'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false">Faculty Zone<span class="mega-indicator" tabindex="0" role="button" aria-label="Faculty Zone submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-834' id='mega-menu-item-834'><a class="mega-menu-link" href="https://www.nandhaarts.org/faculty-benefits/">Faculty Benefits</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-835' id='mega-menu-item-835'><a class="mega-menu-link" href="https://www.nandhaarts.org/hr-cell/">HR Cell</a></li> </ul> </li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-836' id='mega-menu-item-836'><a class="mega-menu-link" href="https://www.nandhaarts.org/programmes/">Programmes</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-838' id='mega-menu-item-838'><a class="mega-menu-link" href="https://www.nandhaarts.org/course-of-study/">Course of Study</a></li></ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-menu-item-804' id='mega-menu-item-804'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false" tabindex="0">Courses<span class="mega-indicator" tabindex="0" role="button" aria-label="Courses submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-item-3225' id='mega-menu-item-3225'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false">Language<span class="mega-indicator" tabindex="0" role="button" aria-label="Language submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-805' id='mega-menu-item-805'><a class="mega-menu-link" href="https://www.nandhaarts.org/tamil/">Tamil</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-806' id='mega-menu-item-806'><a class="mega-menu-link" href="https://www.nandhaarts.org/english/">English</a></li> </ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-item-2954' id='mega-menu-item-2954'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false">Arts Stream<span class="mega-indicator" tabindex="0" role="button" aria-label="Arts Stream submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-815' id='mega-menu-item-815'><a class="mega-menu-link" href="https://www.nandhaarts.org/commerce/">Commerce</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-816' id='mega-menu-item-816'><a class="mega-menu-link" href="https://www.nandhaarts.org/commerce-ca/">Commerce CA</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-817' id='mega-menu-item-817'><a class="mega-menu-link" href="https://www.nandhaarts.org/commerce-cs/">Commerce CS</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-820' id='mega-menu-item-820'><a class="mega-menu-link" href="https://www.nandhaarts.org/banking-insurance/">Banking Insurance</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-819' id='mega-menu-item-819'><a class="mega-menu-link" href="https://www.nandhaarts.org/professional-accounting/">Professional Accounting</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-814' id='mega-menu-item-814'><a class="mega-menu-link" href="https://www.nandhaarts.org/management-studies/">Management Studies</a></li> </ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-item-2955' id='mega-menu-item-2955'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false">Science Stream<span class="mega-indicator" tabindex="0" role="button" aria-label="Science Stream submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-807' id='mega-menu-item-807'><a class="mega-menu-link" href="https://www.nandhaarts.org/computer-applicationsbca/">Computer Applications(BCA)</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-809' id='mega-menu-item-809'><a class="mega-menu-link" href="https://www.nandhaarts.org/bio-technology/">Bio-Technology</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-812' id='mega-menu-item-812'><a class="mega-menu-link" href="https://www.nandhaarts.org/costume-design-fashion/">Costume Design & Fashion</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-811' id='mega-menu-item-811'><a class="mega-menu-link" href="https://www.nandhaarts.org/chemistry/">Chemistry</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-808' id='mega-menu-item-808'><a class="mega-menu-link" href="https://www.nandhaarts.org/mathematics/">Mathematics</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-810' id='mega-menu-item-810'><a class="mega-menu-link" href="https://www.nandhaarts.org/physics/">Physics</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-818' id='mega-menu-item-818'><a class="mega-menu-link" href="https://www.nandhaarts.org/psychology/">Psychology</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-813' id='mega-menu-item-813'><a class="mega-menu-link" href="https://www.nandhaarts.org/computer-science/">Computer Science</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-3076' id='mega-menu-item-3076'><a class="mega-menu-link" href="https://www.nandhaarts.org/ct/">Computer Technology</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-3075' id='mega-menu-item-3075'><a class="mega-menu-link" href="https://www.nandhaarts.org/aids/">Artificial Intelligence and Data Science – AI & DS</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-3077' id='mega-menu-item-3077'><a class="mega-menu-link" href="https://www.nandhaarts.org/it/">Information Technology</a></li> </ul> </li></ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-menu-item-23' id='mega-menu-item-23'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false" tabindex="0">Placement<span class="mega-indicator" tabindex="0" role="button" aria-label="Placement submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-839' id='mega-menu-item-839'><a class="mega-menu-link" href="https://www.nandhaarts.org/about-the-department/">About the Department</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-840' id='mega-menu-item-840'><a class="mega-menu-link" href="https://www.nandhaarts.org/training-development/">Training & Development</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-841' id='mega-menu-item-841'><a class="mega-menu-link" href="https://www.nandhaarts.org/career-path/">Career Path</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-842' id='mega-menu-item-842'><a class="mega-menu-link" href="https://www.nandhaarts.org/career-counselling/">Career Counselling</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-843' id='mega-menu-item-843'><a class="mega-menu-link" href="https://www.nandhaarts.org/placement-status/">Placement Status</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-1934' id='mega-menu-item-1934'><a class="mega-menu-link" href="https://www.nandhaarts.org/contact-us/">Contact Us</a></li></ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-menu-item-24' id='mega-menu-item-24'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false" tabindex="0">Facilities<span class="mega-indicator" tabindex="0" role="button" aria-label="Facilities submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-845' id='mega-menu-item-845'><a class="mega-menu-link" href="https://www.nandhaarts.org/transportation/">Transportation</a></li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-item-846' id='mega-menu-item-846'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false">Library<span class="mega-indicator" tabindex="0" role="button" aria-label="Library submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-847' id='mega-menu-item-847'><a class="mega-menu-link" href="https://www.nandhaarts.org/about-library/">About Library</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-848' id='mega-menu-item-848'><a class="mega-menu-link" href="https://www.nandhaarts.org/daily-newspaper/">Daily Newspaper</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-849' id='mega-menu-item-849'><a class="mega-menu-link" href="https://www.nandhaarts.org/magazines-and-journals/">Magazines and Journals</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-852' id='mega-menu-item-852'><a class="mega-menu-link" href="https://www.nandhaarts.org/resources/">Resources</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-850' id='mega-menu-item-850'><a class="mega-menu-link" href="https://www.nandhaarts.org/e-resources/">E-Resources</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-854' id='mega-menu-item-854'><a class="mega-menu-link" href="https://www.nandhaarts.org/services-offered/">Services Offered</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-855' id='mega-menu-item-855'><a class="mega-menu-link" href="https://www.nandhaarts.org/special-features/">Special Features</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-851' id='mega-menu-item-851'><a class="mega-menu-link" href="https://www.nandhaarts.org/digital-resources/">Digital Resources</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-857' id='mega-menu-item-857'><a class="mega-menu-link" href="https://www.nandhaarts.org/membership/">Membership</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-856' id='mega-menu-item-856'><a class="mega-menu-link" href="https://www.nandhaarts.org/rules-regulations/">Rules & Regulations</a></li> </ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-item-858' id='mega-menu-item-858'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false">Infrastructure<span class="mega-indicator" tabindex="0" role="button" aria-label="Infrastructure submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-859' id='mega-menu-item-859'><a class="mega-menu-link" href="https://www.nandhaarts.org/the-campus/">The Campus</a></li> </ul> </li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-860' id='mega-menu-item-860'><a class="mega-menu-link" href="https://www.nandhaarts.org/hostel/">Hostel</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-861' id='mega-menu-item-861'><a class="mega-menu-link" href="https://www.nandhaarts.org/atm/">ATM</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-863' id='mega-menu-item-863'><a class="mega-menu-link" href="https://www.nandhaarts.org/yoga/">Yoga</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-864' id='mega-menu-item-864'><a class="mega-menu-link" href="https://www.nandhaarts.org/sports/">Sports</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-862' id='mega-menu-item-862'><a class="mega-menu-link" href="https://www.nandhaarts.org/cafeteria/">Cafeteria</a></li></ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-menu-item-25' id='mega-menu-item-25'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false" tabindex="0">Student Zone<span class="mega-indicator" tabindex="0" role="button" aria-label="Student Zone submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-item-865' id='mega-menu-item-865'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false">SONA<span class="mega-indicator" tabindex="0" role="button" aria-label="SONA submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-870' id='mega-menu-item-870'><a class="mega-menu-link" href="https://www.nandhaarts.org/about-sona/">About SONA</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-866' id='mega-menu-item-866'><a class="mega-menu-link" href="https://www.nandhaarts.org/sona-vision-and-mission/">SONA VISION AND MISSION</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-869' id='mega-menu-item-869'><a class="mega-menu-link" href="https://www.nandhaarts.org/sona-coordinator/">SONA COORDINATOR</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-867' id='mega-menu-item-867'><a class="mega-menu-link" href="https://www.nandhaarts.org/sona-students/">SONA STUDENTS</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-868' id='mega-menu-item-868'><a class="mega-menu-link" href="https://www.nandhaarts.org/sona-functions/">SONA FUNCTIONS</a></li> </ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-item-872' id='mega-menu-item-872'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false">Alumni<span class="mega-indicator" tabindex="0" role="button" aria-label="Alumni submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-874' id='mega-menu-item-874'><a class="mega-menu-link" href="https://www.nandhaarts.org/alumni/">Alumni</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-873' id='mega-menu-item-873'><a class="mega-menu-link" href="https://www.nandhaarts.org/registration/">Registration</a></li> </ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-item-875' id='mega-menu-item-875'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false">Students Welfare<span class="mega-indicator" tabindex="0" role="button" aria-label="Students Welfare submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-876' id='mega-menu-item-876'><a class="mega-menu-link" href="https://www.nandhaarts.org/scholarship-details/">Scholarship Details</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-877' id='mega-menu-item-877'><a class="mega-menu-link" href="https://www.nandhaarts.org/nandha-society/">Nandha @ Society</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-878' id='mega-menu-item-878'><a class="mega-menu-link" href="https://www.nandhaarts.org/parent-teacher-association/">Parent Teacher Association</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-879' id='mega-menu-item-879'><a class="mega-menu-link" href="https://www.nandhaarts.org/mentorship/">Mentorship</a></li> </ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-item-880' id='mega-menu-item-880'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false">Clubs<span class="mega-indicator" tabindex="0" role="button" aria-label="Clubs submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-881' id='mega-menu-item-881'><a class="mega-menu-link" href="https://www.nandhaarts.org/yrc/">YRC</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-882' id='mega-menu-item-882'><a class="mega-menu-link" href="https://www.nandhaarts.org/rrc/">RRC</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-888' id='mega-menu-item-888'><a class="mega-menu-link" href="https://www.nandhaarts.org/nss/">NSS</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-886' id='mega-menu-item-886'><a class="mega-menu-link" href="https://www.nandhaarts.org/drama-club/">Drama Club</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-885' id='mega-menu-item-885'><a class="mega-menu-link" href="https://www.nandhaarts.org/eco-club/">Eco Club</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-884' id='mega-menu-item-884'><a class="mega-menu-link" href="https://www.nandhaarts.org/fine-arts-club/">Fine Arts Club</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-889' id='mega-menu-item-889'><a class="mega-menu-link" href="https://www.nandhaarts.org/book-donors-club/">Book Donors Club</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-887' id='mega-menu-item-887'><a class="mega-menu-link" href="https://www.nandhaarts.org/citizen-consumer-club/">Citizen Consumer Club</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-890' id='mega-menu-item-890'><a class="mega-menu-link" href="https://www.nandhaarts.org/grievance-redressal/">Grievance Redressal</a></li> </ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-item-893' id='mega-menu-item-893'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false">Cells<span class="mega-indicator" tabindex="0" role="button" aria-label="Cells submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-897' id='mega-menu-item-897'><a class="mega-menu-link" href="https://www.nandhaarts.org/entreprenuneurship-development-cell/">Entreprenuneurship Development Cell</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-894' id='mega-menu-item-894'><a class="mega-menu-link" href="https://www.nandhaarts.org/student-quality-assurance-cell/">Student Quality Assurance Cell</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-896' id='mega-menu-item-896'><a class="mega-menu-link" href="https://www.nandhaarts.org/redressal-womens-cell/">Redressal Women’s Cell</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-898' id='mega-menu-item-898'><a class="mega-menu-link" href="https://www.nandhaarts.org/counselling-cell/">Counselling Cell</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-895' id='mega-menu-item-895'><a class="mega-menu-link" href="https://www.nandhaarts.org/wdc/">WDC</a></li> </ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-item-899' id='mega-menu-item-899'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false">Functions<span class="mega-indicator" tabindex="0" role="button" aria-label="Functions submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-900' id='mega-menu-item-900'><a class="mega-menu-link" href="https://www.nandhaarts.org/hillario/">Hillario</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-902' id='mega-menu-item-902'><a class="mega-menu-link" href="https://www.nandhaarts.org/graduation-day/">Graduation Day</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-903' id='mega-menu-item-903'><a class="mega-menu-link" href="https://www.nandhaarts.org/radiance/">Radiance</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-901' id='mega-menu-item-901'><a class="mega-menu-link" href="https://www.nandhaarts.org/pongal-thirunaal/">Pongal Thirunaal</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-904' id='mega-menu-item-904'><a class="mega-menu-link" href="https://www.nandhaarts.org/trendy-fair/">Trendy Fair</a></li> </ul> </li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-905' id='mega-menu-item-905'><a class="mega-menu-link" href="https://www.nandhaarts.org/sainandha/">SAI@NANDHA</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-906' id='mega-menu-item-906'><a class="mega-menu-link" href="https://www.nandhaarts.org/rules-and-regulations-for-students/">Rules and Regulations for Students</a></li></ul> </li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-align-bottom-left mega-menu-flyout mega-menu-item-2538' id='mega-menu-item-2538'><a class="mega-menu-link" href="https://www.nandhaarts.org/gallery/" tabindex="0">Gallery</a></li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-menu-item-28' id='mega-menu-item-28'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false" tabindex="0">Academic links<span class="mega-indicator" tabindex="0" role="button" aria-label="Academic links submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-2036' id='mega-menu-item-2036'><a class="mega-menu-link" href="https://swayam.gov.in/">Swayam</a></li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-2037' id='mega-menu-item-2037'><a class="mega-menu-link" href="https://nlist.inflibnet.ac.in/">Inflibnet</a></li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-2038' id='mega-menu-item-2038'><a class="mega-menu-link" href="https://spoken-tutorial.org/">Spoken Tutorials</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-2039' id='mega-menu-item-2039'><a class="mega-menu-link" href="https://www.nandhaarts.org/e-resources/">E-Resources</a></li></ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-menu-item-912' id='mega-menu-item-912'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false" tabindex="0">Contact Us<span class="mega-indicator" tabindex="0" role="button" aria-label="Contact Us submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-913' id='mega-menu-item-913'><a class="mega-menu-link" href="https://www.nandhaarts.org/contact/">Contact Us</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-914' id='mega-menu-item-914'><a class="mega-menu-link" href="https://www.nandhaarts.org/telephone-directory/">Telephone Directory</a></li></ul> </li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-align-bottom-left mega-menu-flyout mega-menu-item-3302' id='mega-menu-item-3302'><a class="mega-menu-link" href="https://www.nandhaarts.org/downloads/" tabindex="0">Downloads</a></li></ul></div> </nav> </div> </div> </div> </div> </div> </div> <div class="mobile-header"> <div class="menu-logo"> <div class="container-fluid"> <div class="row"> <div class="col-xs-8"> <div class="logo"> <a href="https://www.nandhaarts.org/"> <img src="/wp-content/uploads/2022/06/Logo_NASC.png"></a> </div> </div> <div class="col-xs-4"> <div class="mobile-menu"> <nav class="navbar navbar-default" role="navigation"> <div id="mega-menu-wrap-primary" class="mega-menu-wrap"><div class="mega-menu-toggle"><div class="mega-toggle-blocks-left"></div><div class="mega-toggle-blocks-center"></div><div class="mega-toggle-blocks-right"><div class='mega-toggle-block mega-menu-toggle-animated-block mega-toggle-block-0' id='mega-toggle-block-0'><button aria-label="Toggle Menu" class="mega-toggle-animated mega-toggle-animated-slider" type="button" aria-expanded="false"> <span class="mega-toggle-animated-box"> <span class="mega-toggle-animated-inner"></span> </span> </button></div></div></div><ul id="mega-menu-primary" class="mega-menu max-mega-menu mega-menu-horizontal mega-no-js" data-event="hover_intent" data-effect="fade_up" data-effect-speed="200" data-effect-mobile="slide_left" data-effect-speed-mobile="400" data-mobile-force-width="false" data-second-click="go" data-document-click="collapse" data-vertical-behaviour="standard" data-breakpoint="0" data-unbind="true" data-mobile-state="collapse_all" data-hover-intent-timeout="300" data-hover-intent-interval="100" data-sticky-enabled="true" data-sticky-desktop="true" data-sticky-mobile="false" data-sticky-offset="0" data-sticky-expand="false" data-sticky-expand-mobile="false" data-sticky-transition="false"><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-home mega-align-bottom-left mega-menu-flyout mega-menu-item-2040' id='mega-menu-item-2040'><a class="mega-menu-link" href="https://www.nandhaarts.org/" tabindex="0">Home</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-menu-item-99' id='mega-menu-item-99'><a class="mega-menu-link" href="https://www.nandhaarts.org/about-us/" aria-haspopup="true" aria-expanded="false" tabindex="0">About us<span class="mega-indicator" tabindex="0" role="button" aria-label="About us submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-107' id='mega-menu-item-107'><a class="mega-menu-link" href="https://www.nandhaarts.org/about-the-college/">About the College</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-113' id='mega-menu-item-113'><a class="mega-menu-link" href="https://www.nandhaarts.org/chairmans-message/">Chairman’s Message</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-112' id='mega-menu-item-112'><a class="mega-menu-link" href="https://www.nandhaarts.org/secretarys-message/">Secretary’s Message</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-122' id='mega-menu-item-122'><a class="mega-menu-link" href="https://www.nandhaarts.org/principals-message/">Principal’s Message</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-128' id='mega-menu-item-128'><a class="mega-menu-link" href="https://www.nandhaarts.org/vision-mission/">Vision & Mission</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-132' id='mega-menu-item-132'><a class="mega-menu-link" href="https://www.nandhaarts.org/motto-objectives/">Motto & Objectives</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-796' id='mega-menu-item-796'><a class="mega-menu-link" href="https://www.nandhaarts.org/college-at-a-glance/">College at a Glance</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-797' id='mega-menu-item-797'><a class="mega-menu-link" href="https://www.nandhaarts.org/mc-members/">MC Members</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-798' id='mega-menu-item-798'><a class="mega-menu-link" href="https://www.nandhaarts.org/milestones/">Milestones</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-799' id='mega-menu-item-799'><a class="mega-menu-link" href="https://www.nandhaarts.org/code-of-conduct/">Code of Conduct</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-800' id='mega-menu-item-800'><a class="mega-menu-link" href="https://www.nandhaarts.org/our-institutions/">Our Institutions</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-801' id='mega-menu-item-801'><a class="mega-menu-link" href="https://www.nandhaarts.org/governing-council/">Governing Council</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-802' id='mega-menu-item-802'><a class="mega-menu-link" href="https://www.nandhaarts.org/oraganogram-chart/">Oraganogram Chart</a></li></ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-menu-item-22' id='mega-menu-item-22'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false" tabindex="0">Academics<span class="mega-indicator" tabindex="0" role="button" aria-label="Academics submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-item-821' id='mega-menu-item-821'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false">Value Added Courses<span class="mega-indicator" tabindex="0" role="button" aria-label="Value Added Courses submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-822' id='mega-menu-item-822'><a class="mega-menu-link" href="https://www.nandhaarts.org/idc/">IDC</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-823' id='mega-menu-item-823'><a class="mega-menu-link" href="https://www.nandhaarts.org/cvac/">CVAC</a></li> </ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-item-824' id='mega-menu-item-824'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false">R&D Cell<span class="mega-indicator" tabindex="0" role="button" aria-label="R&D Cell submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-825' id='mega-menu-item-825'><a class="mega-menu-link" href="https://www.nandhaarts.org/research-funding-committee/">Research Funding Committee</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-826' id='mega-menu-item-826'><a class="mega-menu-link" href="https://www.nandhaarts.org/ethics-committee/">Ethics Committee</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-827' id='mega-menu-item-827'><a class="mega-menu-link" href="https://www.nandhaarts.org/funds-by-cpe-ugc/">Funds by CPE-UGC</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-828' id='mega-menu-item-828'><a class="mega-menu-link" href="https://www.nandhaarts.org/research-policy/">Research Policy</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-829' id='mega-menu-item-829'><a class="mega-menu-link" href="https://www.nandhaarts.org/code-of-ethics/">Code of Ethics</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-830' id='mega-menu-item-830'><a class="mega-menu-link" href="https://www.nandhaarts.org/publications/">Publications</a></li> </ul> </li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-831' id='mega-menu-item-831'><a class="mega-menu-link" href="https://www.nandhaarts.org/admission-procedure/">Admission Procedure</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-832' id='mega-menu-item-832'><a class="mega-menu-link" href="https://www.nandhaarts.org/university-regulations/">University Regulations</a></li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-item-833' id='mega-menu-item-833'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false">Faculty Zone<span class="mega-indicator" tabindex="0" role="button" aria-label="Faculty Zone submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-834' id='mega-menu-item-834'><a class="mega-menu-link" href="https://www.nandhaarts.org/faculty-benefits/">Faculty Benefits</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-835' id='mega-menu-item-835'><a class="mega-menu-link" href="https://www.nandhaarts.org/hr-cell/">HR Cell</a></li> </ul> </li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-836' id='mega-menu-item-836'><a class="mega-menu-link" href="https://www.nandhaarts.org/programmes/">Programmes</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-838' id='mega-menu-item-838'><a class="mega-menu-link" href="https://www.nandhaarts.org/course-of-study/">Course of Study</a></li></ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-menu-item-804' id='mega-menu-item-804'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false" tabindex="0">Courses<span class="mega-indicator" tabindex="0" role="button" aria-label="Courses submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-item-3225' id='mega-menu-item-3225'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false">Language<span class="mega-indicator" tabindex="0" role="button" aria-label="Language submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-805' id='mega-menu-item-805'><a class="mega-menu-link" href="https://www.nandhaarts.org/tamil/">Tamil</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-806' id='mega-menu-item-806'><a class="mega-menu-link" href="https://www.nandhaarts.org/english/">English</a></li> </ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-item-2954' id='mega-menu-item-2954'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false">Arts Stream<span class="mega-indicator" tabindex="0" role="button" aria-label="Arts Stream submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-815' id='mega-menu-item-815'><a class="mega-menu-link" href="https://www.nandhaarts.org/commerce/">Commerce</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-816' id='mega-menu-item-816'><a class="mega-menu-link" href="https://www.nandhaarts.org/commerce-ca/">Commerce CA</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-817' id='mega-menu-item-817'><a class="mega-menu-link" href="https://www.nandhaarts.org/commerce-cs/">Commerce CS</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-820' id='mega-menu-item-820'><a class="mega-menu-link" href="https://www.nandhaarts.org/banking-insurance/">Banking Insurance</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-819' id='mega-menu-item-819'><a class="mega-menu-link" href="https://www.nandhaarts.org/professional-accounting/">Professional Accounting</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-814' id='mega-menu-item-814'><a class="mega-menu-link" href="https://www.nandhaarts.org/management-studies/">Management Studies</a></li> </ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-item-2955' id='mega-menu-item-2955'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false">Science Stream<span class="mega-indicator" tabindex="0" role="button" aria-label="Science Stream submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-807' id='mega-menu-item-807'><a class="mega-menu-link" href="https://www.nandhaarts.org/computer-applicationsbca/">Computer Applications(BCA)</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-809' id='mega-menu-item-809'><a class="mega-menu-link" href="https://www.nandhaarts.org/bio-technology/">Bio-Technology</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-812' id='mega-menu-item-812'><a class="mega-menu-link" href="https://www.nandhaarts.org/costume-design-fashion/">Costume Design & Fashion</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-811' id='mega-menu-item-811'><a class="mega-menu-link" href="https://www.nandhaarts.org/chemistry/">Chemistry</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-808' id='mega-menu-item-808'><a class="mega-menu-link" href="https://www.nandhaarts.org/mathematics/">Mathematics</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-810' id='mega-menu-item-810'><a class="mega-menu-link" href="https://www.nandhaarts.org/physics/">Physics</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-818' id='mega-menu-item-818'><a class="mega-menu-link" href="https://www.nandhaarts.org/psychology/">Psychology</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-813' id='mega-menu-item-813'><a class="mega-menu-link" href="https://www.nandhaarts.org/computer-science/">Computer Science</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-3076' id='mega-menu-item-3076'><a class="mega-menu-link" href="https://www.nandhaarts.org/ct/">Computer Technology</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-3075' id='mega-menu-item-3075'><a class="mega-menu-link" href="https://www.nandhaarts.org/aids/">Artificial Intelligence and Data Science – AI & DS</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-3077' id='mega-menu-item-3077'><a class="mega-menu-link" href="https://www.nandhaarts.org/it/">Information Technology</a></li> </ul> </li></ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-menu-item-23' id='mega-menu-item-23'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false" tabindex="0">Placement<span class="mega-indicator" tabindex="0" role="button" aria-label="Placement submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-839' id='mega-menu-item-839'><a class="mega-menu-link" href="https://www.nandhaarts.org/about-the-department/">About the Department</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-840' id='mega-menu-item-840'><a class="mega-menu-link" href="https://www.nandhaarts.org/training-development/">Training & Development</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-841' id='mega-menu-item-841'><a class="mega-menu-link" href="https://www.nandhaarts.org/career-path/">Career Path</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-842' id='mega-menu-item-842'><a class="mega-menu-link" href="https://www.nandhaarts.org/career-counselling/">Career Counselling</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-843' id='mega-menu-item-843'><a class="mega-menu-link" href="https://www.nandhaarts.org/placement-status/">Placement Status</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-1934' id='mega-menu-item-1934'><a class="mega-menu-link" href="https://www.nandhaarts.org/contact-us/">Contact Us</a></li></ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-menu-item-24' id='mega-menu-item-24'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false" tabindex="0">Facilities<span class="mega-indicator" tabindex="0" role="button" aria-label="Facilities submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-845' id='mega-menu-item-845'><a class="mega-menu-link" href="https://www.nandhaarts.org/transportation/">Transportation</a></li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-item-846' id='mega-menu-item-846'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false">Library<span class="mega-indicator" tabindex="0" role="button" aria-label="Library submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-847' id='mega-menu-item-847'><a class="mega-menu-link" href="https://www.nandhaarts.org/about-library/">About Library</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-848' id='mega-menu-item-848'><a class="mega-menu-link" href="https://www.nandhaarts.org/daily-newspaper/">Daily Newspaper</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-849' id='mega-menu-item-849'><a class="mega-menu-link" href="https://www.nandhaarts.org/magazines-and-journals/">Magazines and Journals</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-852' id='mega-menu-item-852'><a class="mega-menu-link" href="https://www.nandhaarts.org/resources/">Resources</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-850' id='mega-menu-item-850'><a class="mega-menu-link" href="https://www.nandhaarts.org/e-resources/">E-Resources</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-854' id='mega-menu-item-854'><a class="mega-menu-link" href="https://www.nandhaarts.org/services-offered/">Services Offered</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-855' id='mega-menu-item-855'><a class="mega-menu-link" href="https://www.nandhaarts.org/special-features/">Special Features</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-851' id='mega-menu-item-851'><a class="mega-menu-link" href="https://www.nandhaarts.org/digital-resources/">Digital Resources</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-857' id='mega-menu-item-857'><a class="mega-menu-link" href="https://www.nandhaarts.org/membership/">Membership</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-856' id='mega-menu-item-856'><a class="mega-menu-link" href="https://www.nandhaarts.org/rules-regulations/">Rules & Regulations</a></li> </ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-item-858' id='mega-menu-item-858'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false">Infrastructure<span class="mega-indicator" tabindex="0" role="button" aria-label="Infrastructure submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-859' id='mega-menu-item-859'><a class="mega-menu-link" href="https://www.nandhaarts.org/the-campus/">The Campus</a></li> </ul> </li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-860' id='mega-menu-item-860'><a class="mega-menu-link" href="https://www.nandhaarts.org/hostel/">Hostel</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-861' id='mega-menu-item-861'><a class="mega-menu-link" href="https://www.nandhaarts.org/atm/">ATM</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-863' id='mega-menu-item-863'><a class="mega-menu-link" href="https://www.nandhaarts.org/yoga/">Yoga</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-864' id='mega-menu-item-864'><a class="mega-menu-link" href="https://www.nandhaarts.org/sports/">Sports</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-862' id='mega-menu-item-862'><a class="mega-menu-link" href="https://www.nandhaarts.org/cafeteria/">Cafeteria</a></li></ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-menu-item-25' id='mega-menu-item-25'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false" tabindex="0">Student Zone<span class="mega-indicator" tabindex="0" role="button" aria-label="Student Zone submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-item-865' id='mega-menu-item-865'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false">SONA<span class="mega-indicator" tabindex="0" role="button" aria-label="SONA submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-870' id='mega-menu-item-870'><a class="mega-menu-link" href="https://www.nandhaarts.org/about-sona/">About SONA</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-866' id='mega-menu-item-866'><a class="mega-menu-link" href="https://www.nandhaarts.org/sona-vision-and-mission/">SONA VISION AND MISSION</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-869' id='mega-menu-item-869'><a class="mega-menu-link" href="https://www.nandhaarts.org/sona-coordinator/">SONA COORDINATOR</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-867' id='mega-menu-item-867'><a class="mega-menu-link" href="https://www.nandhaarts.org/sona-students/">SONA STUDENTS</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-868' id='mega-menu-item-868'><a class="mega-menu-link" href="https://www.nandhaarts.org/sona-functions/">SONA FUNCTIONS</a></li> </ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-item-872' id='mega-menu-item-872'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false">Alumni<span class="mega-indicator" tabindex="0" role="button" aria-label="Alumni submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-874' id='mega-menu-item-874'><a class="mega-menu-link" href="https://www.nandhaarts.org/alumni/">Alumni</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-873' id='mega-menu-item-873'><a class="mega-menu-link" href="https://www.nandhaarts.org/registration/">Registration</a></li> </ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-item-875' id='mega-menu-item-875'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false">Students Welfare<span class="mega-indicator" tabindex="0" role="button" aria-label="Students Welfare submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-876' id='mega-menu-item-876'><a class="mega-menu-link" href="https://www.nandhaarts.org/scholarship-details/">Scholarship Details</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-877' id='mega-menu-item-877'><a class="mega-menu-link" href="https://www.nandhaarts.org/nandha-society/">Nandha @ Society</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-878' id='mega-menu-item-878'><a class="mega-menu-link" href="https://www.nandhaarts.org/parent-teacher-association/">Parent Teacher Association</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-879' id='mega-menu-item-879'><a class="mega-menu-link" href="https://www.nandhaarts.org/mentorship/">Mentorship</a></li> </ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-item-880' id='mega-menu-item-880'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false">Clubs<span class="mega-indicator" tabindex="0" role="button" aria-label="Clubs submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-881' id='mega-menu-item-881'><a class="mega-menu-link" href="https://www.nandhaarts.org/yrc/">YRC</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-882' id='mega-menu-item-882'><a class="mega-menu-link" href="https://www.nandhaarts.org/rrc/">RRC</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-888' id='mega-menu-item-888'><a class="mega-menu-link" href="https://www.nandhaarts.org/nss/">NSS</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-886' id='mega-menu-item-886'><a class="mega-menu-link" href="https://www.nandhaarts.org/drama-club/">Drama Club</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-885' id='mega-menu-item-885'><a class="mega-menu-link" href="https://www.nandhaarts.org/eco-club/">Eco Club</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-884' id='mega-menu-item-884'><a class="mega-menu-link" href="https://www.nandhaarts.org/fine-arts-club/">Fine Arts Club</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-889' id='mega-menu-item-889'><a class="mega-menu-link" href="https://www.nandhaarts.org/book-donors-club/">Book Donors Club</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-887' id='mega-menu-item-887'><a class="mega-menu-link" href="https://www.nandhaarts.org/citizen-consumer-club/">Citizen Consumer Club</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-890' id='mega-menu-item-890'><a class="mega-menu-link" href="https://www.nandhaarts.org/grievance-redressal/">Grievance Redressal</a></li> </ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-item-893' id='mega-menu-item-893'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false">Cells<span class="mega-indicator" tabindex="0" role="button" aria-label="Cells submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-897' id='mega-menu-item-897'><a class="mega-menu-link" href="https://www.nandhaarts.org/entreprenuneurship-development-cell/">Entreprenuneurship Development Cell</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-894' id='mega-menu-item-894'><a class="mega-menu-link" href="https://www.nandhaarts.org/student-quality-assurance-cell/">Student Quality Assurance Cell</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-896' id='mega-menu-item-896'><a class="mega-menu-link" href="https://www.nandhaarts.org/redressal-womens-cell/">Redressal Women’s Cell</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-898' id='mega-menu-item-898'><a class="mega-menu-link" href="https://www.nandhaarts.org/counselling-cell/">Counselling Cell</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-895' id='mega-menu-item-895'><a class="mega-menu-link" href="https://www.nandhaarts.org/wdc/">WDC</a></li> </ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-menu-item-899' id='mega-menu-item-899'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false">Functions<span class="mega-indicator" tabindex="0" role="button" aria-label="Functions submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-900' id='mega-menu-item-900'><a class="mega-menu-link" href="https://www.nandhaarts.org/hillario/">Hillario</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-902' id='mega-menu-item-902'><a class="mega-menu-link" href="https://www.nandhaarts.org/graduation-day/">Graduation Day</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-903' id='mega-menu-item-903'><a class="mega-menu-link" href="https://www.nandhaarts.org/radiance/">Radiance</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-901' id='mega-menu-item-901'><a class="mega-menu-link" href="https://www.nandhaarts.org/pongal-thirunaal/">Pongal Thirunaal</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-904' id='mega-menu-item-904'><a class="mega-menu-link" href="https://www.nandhaarts.org/trendy-fair/">Trendy Fair</a></li> </ul> </li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-905' id='mega-menu-item-905'><a class="mega-menu-link" href="https://www.nandhaarts.org/sainandha/">SAI@NANDHA</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-906' id='mega-menu-item-906'><a class="mega-menu-link" href="https://www.nandhaarts.org/rules-and-regulations-for-students/">Rules and Regulations for Students</a></li></ul> </li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-align-bottom-left mega-menu-flyout mega-menu-item-2538' id='mega-menu-item-2538'><a class="mega-menu-link" href="https://www.nandhaarts.org/gallery/" tabindex="0">Gallery</a></li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-menu-item-28' id='mega-menu-item-28'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false" tabindex="0">Academic links<span class="mega-indicator" tabindex="0" role="button" aria-label="Academic links submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-2036' id='mega-menu-item-2036'><a class="mega-menu-link" href="https://swayam.gov.in/">Swayam</a></li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-2037' id='mega-menu-item-2037'><a class="mega-menu-link" href="https://nlist.inflibnet.ac.in/">Inflibnet</a></li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-2038' id='mega-menu-item-2038'><a class="mega-menu-link" href="https://spoken-tutorial.org/">Spoken Tutorials</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-2039' id='mega-menu-item-2039'><a class="mega-menu-link" href="https://www.nandhaarts.org/e-resources/">E-Resources</a></li></ul> </li><li class='mega-menu-item mega-menu-item-type-custom mega-menu-item-object-custom mega-menu-item-has-children mega-align-bottom-left mega-menu-flyout mega-menu-item-912' id='mega-menu-item-912'><a class="mega-menu-link" href="#" aria-haspopup="true" aria-expanded="false" tabindex="0">Contact Us<span class="mega-indicator" tabindex="0" role="button" aria-label="Contact Us submenu"></span></a> <ul class="mega-sub-menu"> <li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-913' id='mega-menu-item-913'><a class="mega-menu-link" href="https://www.nandhaarts.org/contact/">Contact Us</a></li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-menu-item-914' id='mega-menu-item-914'><a class="mega-menu-link" href="https://www.nandhaarts.org/telephone-directory/">Telephone Directory</a></li></ul> </li><li class='mega-menu-item mega-menu-item-type-post_type mega-menu-item-object-page mega-align-bottom-left mega-menu-flyout mega-menu-item-3302' id='mega-menu-item-3302'><a class="mega-menu-link" href="https://www.nandhaarts.org/downloads/" tabindex="0">Downloads</a></li></ul></div> </nav> </div> </div> </div> <div class="row"> <div class="col-xs-12"> <div class="site-tit"> <h1>NANDHA</h1> <h2>ARTS & SCIENCE COLLEGE</h2> </div> </div> <div class="col-xs-12"> <div class="site-tit"> <h5>(Affiliated to Bharathiar University, Coimbatore) <span>Approved by UGC for 2(f), 12(B) & Re-Accredited by NAAC B+</span></h5> </div> </div> </div> </div> </div> </div> <!-- /.end of section --> </header> <div class="spacer"> <section class="page-header"> <div class="container"> <h1 class="text-center"> Oops! That page can’t be found. </h1> <div class=" detail-content"> <div class="not-found"> <p class="text-center">It looks like nothing was found at this location. Maybe try one of the links below or a search?</p> <form method="get" id="searchform" action="https://www.nandhaarts.org/" role="search"> <div class="input-group"> <input class="field form-control" id="s" name="s" style="margin-bottom:5px;" type="text" placeholder="Search …" value=""> <span class="input-group-append"> <input class="submit btn btn-danger" id="searchsubmit" name="submit" type="submit" value="Search"> </span> </div> </form> </div> </div> </div> </section> </div> <!-- Tab to top scrolling --> <!--<div class="scroll-top-wrapper"> <span class="scroll-top-inner"> <i class="fa fa-2x fa-angle-up"></i> </span> </div> <section class="footers"> <div class="container footers"> <div class="row"> </div> </div> </section>--> <footer id="site-footer" role="contentinfo"> <div class="footer-inn"> <div class="container-fluid"> <div class="row"> <div class="col-md-6 col-sm-12 col-xs-12"> <div class="foo-logo"> <div class="col-md-3 col-sm-12 col-xs-12 no-pad"> <!--<a href=""> <img src="http://nct.demofocussoft.com/wp-content/uploads/2021/11/NCT-Logo.png"></a>---> </div> <div class="col-md-9 col-sm-12 col-xs-12"> <!--<div class="foo-logo-txt"> <h1>NANDHA</h1> <h2>COLLEGE OF TECHNOLOGY</h2> </div>--> </div> </div> </div> <div class="col-md-6 col-sm-12 col-xs-12"> <div class="social-icons"> <p> <span>FOLLOW US ON</span> <a href="https://www.facebook.com/NandhaArtsandScienceCollege/" target="_blank"><i class="fa fa-facebook fb-clr"></i> </a> <a href="https://www.youtube.com/channel/UCMUrDLRKQ0lsBTeGxHn5Gfw" target="_blank"><i class="fa fa-youtube you-clr"></i> </a> <a href="https://www.instagram.com/nandhaartsandsciencecollege/" target="_blank"><i class="fa fa-instagram inst-clr"></i></a> <a href="https://twitter.com/nandha_arts" target="_blank"><i class="fa fa-twitter link-clr"></i> </a> <a href="https://t.me/nandha_arts" target="_blank"><i class="fa fa-telegram tele-clr"></i></a> </p> </div> </div> </div> <div id="footer-row" class="row"> <!--<div class="col-md-2 col-sm-12 col-xs-12"> <div class="foo-a"> <h4>ACADEMICS</h4> <ul> <li><a href="#">Departments</a></li> <li><a href="#">Programs</a></li> <li><a href="#">Vision & Mission</a></li> </ul> </div> </div>--> <div class="col-md-6 col-sm-12 col-xs-12"> <div class="foo-link"> <!--<ul> <li><a href="#">Ecampus</a></li> <li><a href="#">Alumni</a></li> <li><a href="#">Staff Portal </a></li> <li><a href="#">Mail</a></li> </ul>--> <div class="fb-page" data-href="https://www.facebook.com/NandhaArtsandScienceCollege" data-tabs="timeline" data-width="" data-height="300" data-small-header="false" data-adapt-container-width="false" data-hide-cover="false" data-show-facepile="false"><blockquote cite="https://www.facebook.com/NandhaArtsandScienceCollege" class="fb-xfbml-parse-ignore"><a href="https://www.facebook.com/NandhaArtsandScienceCollege">Nandha Arts And Science College, Erode</a></blockquote></div> </div> </div> <!-- <div class="col-md-4 col-sm-12 col-xs-12"> <div class="foo-a"> <!--<h4>USEFUL LINKS</h4> <ul> <li><a href="#">Governing Council</a></li> <li><a href="#">Internal Quality Assurance Cell</a></li> <li><a href="#">Anti-Ragging Cell</a></li> <li><a href="#">Grievance Redressal Committee</a></li> <li><a href="#">News and Events</a></li> <li><a href="#">Academic Calendar</a></li> <li><a href="#">Announcements</a></li> <li><a href="#">Learning Resources</a></li> </ul> <iframe style="border:none;" height="300" data-tweet-url="https://twitter.com/nandha_arts" src="data:text/html;charset=utf-8,%3Ca%20class%3D%22twitter-timeline%22%20href%3D%22https%3A//twitter.com/nandha_arts%3Fref_src%3Dtwsrc%255Etfw%22%3ETweets%20by%20nandha_arts%3C/a%3E%0A%3Cscript%20async%20src%3D%22https%3A//platform.twitter.com/widgets.js%22%20charset%3D%22utf-8%22%3E%3C/script%3E%0A"></iframe> </div> </div> --> <div class="col-md-4 col-sm-12 col-xs-12"> <div class="foo-add"> <h4>Address</h4> <p class="fadd">Nandha Arts and Science College, Koorapalayam Pirivu, Pitchandampalayam Post, Erode - 638 052 Tamil Nadu, INDIA</p> <h4>For Admissions</h4> <p class="fmphone">+91-<a href="tel:+917373724422">+91 7373 724 422</a> / <a href="tel:+919750222788">9750 222 788</a></p> <p class="fphone">04294 - 222788</p> <p class="fmail"><a href="mailto:info@nandhaarts.org"> info@nandhaarts.org</a></p> </div> <!--<div class="foo-a"> <h4>Admissions</h4> <ul> <li><a href="#">Admission Information</a></li> <li><a href="#">How to Apply</a></li> <li><a href="#">Lateral Entry</a></li> </ul> </div> <!-- <div class="container-fluid"> <div class="row "> <div class="col-md-6"> <h2>News Letter</h2> </div> <div class="col-md-6"></div> </div> </div> --> </div> </div> </div> <div class="foo-btm"> <div class="container-fluid"> <div class="row"> <div class="col-md-4 col-sm-12 col-xs-12"> <p> Copyright © 2022 <a href="https://www.nandhaarts.org/">Nandha Arts & Science College</a>. All Rights Reserved. </p> </div> <div class="col-md-4 col-sm-12 col-xs-12"> <h4 class="visitor_count">583375</h4> </div> <div class="col-md-4 col-sm-12 col-xs-12"> <div class="dev-end"> <p> Developed By <a href="http://focussoftsolutions.com/" target="_blank">Focus Soft Solutions</a> </p></div> </div> </div> </div> </div> </div> </footer> <!--CDN JS File --> <script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script> <link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css"> <!--JS File --> <script type="text/javascript" src="https://www.nandhaarts.org/wp-content/plugins/counter-number-showcase/assets/js/bootstrap.js?ver=6.5.3" id="wpsm_count_bootstrap-js-front-js"></script> <script type="text/javascript" src="https://www.nandhaarts.org/wp-content/plugins/counter-number-showcase/assets/js/counter_nscript.js?ver=6.5.3" id="wpsm-new_count_script3-js"></script> <script type="text/javascript" src="https://www.nandhaarts.org/wp-content/plugins/counter-number-showcase/assets/js/waypoints.min.js?ver=6.5.3" id="wpsm-new_count_waypoints-js"></script> <script type="text/javascript" src="https://www.nandhaarts.org/wp-content/plugins/counter-number-showcase/assets/js/jquery.counterup.min.js?ver=6.5.3" id="wpsm-new_count_script2-js"></script> <script type="text/javascript" src="https://www.nandhaarts.org/wp-content/plugins/dearpdf-lite/assets/js/dearpdf-lite.min.js?ver=2.0.38" id="dearpdf-script-js"></script> <script type="text/javascript" src="https://www.nandhaarts.org/wp-includes/js/hoverIntent.min.js?ver=1.10.2" id="hoverIntent-js"></script> <script type="text/javascript" id="megamenu-js-extra"> /* <![CDATA[ */ var megamenu = {"timeout":"300","interval":"100"}; /* ]]> */ </script> <script type="text/javascript" src="https://www.nandhaarts.org/wp-content/plugins/megamenu/js/maxmegamenu.js?ver=3.1.1" id="megamenu-js"></script> <script type="text/javascript" src="https://www.nandhaarts.org/wp-content/plugins/megamenu-pro/assets/public.js?ver=2.1.1" id="megamenu-pro-js"></script> </body> </html>