<?php /** * The header for our theme * * This is the template that displays all of the <head> section and everything up until <div id="content"> * * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials * * @package Markup */ $GLOBALS['markup_theme_options'] = markup_get_options_value(); global $markup_theme_options; $enable_slider = absint($markup_theme_options['markup_enable_slider']); $enable_box = $markup_theme_options['markup_enable_promo']; ?> <!doctype html> <html <?php language_attributes(); ?>> <head> <meta charset="<?php bloginfo( 'charset' ); ?>"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="https://gmpg.org/xfn/11"> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <?php //wp_body_open hook from WordPress 5.2 if ( function_exists( 'wp_body_open' ) ) { wp_body_open(); }else { do_action( 'wp_body_open' ); } ?> <div id="page" class="site "> <a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'markup' ); ?></a> <?php /** * Hook - markup_action_header. * * @hooked markup_add_main_header - 10 */ do_action( 'markup_action_header' ); ?> <?php if ($enable_slider == 1 && (is_home() || is_front_page())) { ?> <section class="slider-wrapper"> <?php /* * Slider Section Hook */ do_action('markup_action_slider'); ?> </section> <?php } ?> <?php if ($enable_box == 1 && (is_home() || is_front_page() ) ) { ?> <section class="promo-slider-wrapper"> <?php /* * Boxes Section Hook */ do_action('markup_action_boxes'); ?> </section> <?php } ?>
Uncategorized

NEET UG 2023 Result: हर दिन 3-4 घंटे पढ़कर नीट में हासिल की 8वीं रैंक, दिया सफलता का खास मंत्र

[ad_1]

NEET UG 2023 Result Swayam Shakti Tripathy AIR 8 Success Story: ओडिशा के भुवनेश्वर के रहने वाले स्वयं शक्ति त्रिपाठी को जब पता चला कि, उन्होंने नीट यूजी रिजल्ट में ऑल इंडिया रैंक 8 हासिल की है, तो वह खुद सरप्राइज हो गए. उनका कहना है कि उन्हें अच्छे मार्क्स की उम्मीद तो थी, लेकिन 8वीं रैंक आना उनके लिए भी सरप्राइज जैसा था. स्वयं अब सर्जन बनना चाहते हैं और मेडिसिन के क्षेत्र में अपना महत्वपूर्ण योगदान देना चाहते हैं.

स्वयं का कहना है कि उन्होंने अपने पिता की वजह से डॉक्टर बनने का निर्णय लिया था, जोकि उनके लिए प्रोत्साहन के सबसे बड़े स्त्रोत हैं. स्वयं ने कहा कि, ‘मेरे पिता मुझे अपने कई डॉक्टर मित्रों के पास लेकर गए, उनसे बातचीत कर मुझे समझ आया कि डॉक्टर का एक समाज में कितना महत्वपूर्ण रोल होता है.’

पहली बार में निकाली परीक्षा
स्वयं के पिता ओडिशा युनिवर्सिटी ऑफ टेक्नोलॉजी में इलेक्ट्रिकल इंजीनियर हैं. वहीं उनकी मां गृहिणी हैं. इसके अलावा उनकी एक छोटी बहन है. उन्होंने अपने पहले ही प्रयास में नीट परीक्षा निकाली है. उनका कहना है कि दृढ़ निश्चय और अच्छी प्लानिंग की बदौलत ही वह इस परीक्षा को निकालने में कामयाब हो पाए हैं.

हर दिन 3-4 घंटे की पढ़ाई
स्वयं बताते हैं कि परीक्षा की तैयारी के लिए वह प्रतिदिन 3-4 घंटे पढ़ाई करते थे. इसके अलावा उन्होंने अधिक से अधिक मॉक टेस्ट दिए. जिससे उन्हें एग्जाम के समय उत्तर देने में आसानी हुई. इसके अलावा वह हर सुबह एक टू-डू लिस्ट बनाते थे और यह निश्चित करते थे कि रात में सोने से पहले तक वह सारे काम पूरे कर लें. वह अपने स्कूल में भी टॉपर रह हैं. उन्होंने 10वी में 99.6% और 12वीं में 98.6% मार्क्स हासिल किए थे.

ये भी पढ़ें-
NEET UG 2023 Result Toppers: नीट यूजी में प्रभंजन ने कैसे किया टॉप ? जानिए उनकी सफलता का मंत्र
NEET UG 2023 Result: यूपी से शुभम बंसल ने किया टॉप, ऐसे की तैयारी और लाए 715 अंक

Tags: NEET, Neet exam, NEET UG 2023

[ad_2]

Source link

<?php /** * The template for displaying the footer * * Contains the closing of the #content div and all content after. * * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials * * @package Markup */ global $markup_theme_options; $copyright = wp_kses_post($markup_theme_options['markup-footer-copyright']); if ( is_active_sidebar('footer-1') || is_active_sidebar('footer-2') || is_active_sidebar('footer-3') || is_active_sidebar('footer-4') ) { $count = 0; for ( $i = 1; $i <= 4; $i++ ) { if ( is_active_sidebar( 'footer-' . $i ) ) { $count++; } } $footer_col= 4; if( $count == 4 ) { $footer_col= 4; } elseif( $count == 3) { $footer_col= 3; } elseif( $count == 2) { $footer_col= 2; } elseif( $count == 1) { $footer_col= 1; } } ?> <div class="footer-full-width"> <?php if ( is_active_sidebar( 'full-width-footer' ) ){ dynamic_sidebar( 'full-width-footer' ); } ?> </div> <div class="footer-wrap"> <div class="container"> <div class="row"> <?php for ( $i = 1; $i <= 4 ; $i++ ){ if ( is_active_sidebar( 'footer-' . $i ) ) { ?> <div class="footer-col-<?php echo absint( $footer_col ); ?>"> <div class="footer-top-box wow fadeInUp"> <?php dynamic_sidebar( 'footer-' . $i ); ?> </div> </div> <?php } } ?> </div> </div> <footer class="site-footer"> <div class="container"> <div class="row"> <div class="col-sm-6"> <div class="copyright"> <?php echo wp_kses_post( $copyright ); ?> <span class="sep"> | </span> <?php /* translators: 1: Theme name, 2: Theme author. */ printf( esc_html__( 'Theme: %1$s by %2$s.', 'markup' ), 'Markup', '<a href="https://www.templatesell.com/">Template Sell</a>' ); ?> </div> </div> <div class="col-sm-6"> <div class="footer-menu"> <?php wp_nav_menu( array( 'theme_location' => 'footer', 'menu_id' => 'footer-menu', 'menu_class' => 'footer-menu', ) ); ?> </div> </div> </div> </div> </footer> <?php do_action('markup_go_to_top_hook'); ?> </div> </div><!-- #page --> <?php wp_footer(); ?> </body> </html>