{"id":65,"date":"2013-09-11T13:30:18","date_gmt":"2013-09-11T13:30:18","guid":{"rendered":"http:\/\/www.richcoward.com\/blcuchinese\/?page_id=65"},"modified":"2024-07-01T19:27:34","modified_gmt":"2024-07-01T19:27:34","slug":"home","status":"publish","type":"page","link":"https:\/\/www.blcuchinese.com\/online\/home\/","title":{"rendered":"Home"},"content":{"rendered":"<div class=\"sixcol column\">\n<h1><strong>Learn Chinese Online 1 on 1 with BLCU<\/strong><\/h1>\n<p>Beijing Language and Culture University is China&#8217;s No.1 Chinese Learning University for Foreigners. Offering effective and affordable 1 on 1 Online Chinese Classes for international students. Sign up now for a free trial.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/www.blcuchinese.com\/online\/wp-content\/uploads\/2013\/10\/BLCU11-300x225.jpg\" alt=\"BLCU1\" width=\"300\" height=\"225\" \/><\/p>\n<\/div> <div class=\"sixcol column last\">\n<h1><strong>Book Free Trial Class Now<\/strong><\/h1>\n<script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n\n\/\/----------------------------------------------------------\n\/\/------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------\n\/\/----------------------------------------------------------\n\nif ( ! gform ) {\n\tdocument.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );\n\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );\n\twindow.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );\n\n\tvar gform = {\n\t\tdomLoaded: false,\n\t\tscriptsLoaded: false,\n\t\tthemeScriptsLoaded: false,\n\t\tisFormEditor: () => typeof InitializeEditor === 'function',\n\n\t\t\/**\n\t\t * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.\n\t\t * @remove-in 4.0 this function will not check for gform.isFormEditor().\n\t\t *\/\n\t\tcallIfLoaded: function ( fn ) {\n\t\t\tif ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {\n\t\t\t\tif ( gform.isFormEditor() ) {\n\t\t\t\t\tconsole.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );\n\t\t\t\t}\n\t\t\t\tfn();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\n\t\t\/**\n\t\t * Call a function when all scripts are loaded\n\t\t *\n\t\t * @param function fn the callback function to call when all scripts are loaded\n\t\t *\n\t\t * @returns void\n\t\t *\/\n\t\tinitializeOnLoaded: function( fn ) {\n\t\t\tif ( ! gform.callIfLoaded( fn ) ) {\n\t\t\t\tdocument.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\twindow.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t}\n\t\t},\n\n\t\thooks: { action: {}, filter: {} },\n\t\taddAction: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'action', action, callable, priority, tag );\n\t\t},\n\t\taddFilter: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'filter', action, callable, priority, tag );\n\t\t},\n\t\tdoAction: function( action ) {\n\t\t\tgform.doHook( 'action', action, arguments );\n\t\t},\n\t\tapplyFilters: function( action ) {\n\t\t\treturn gform.doHook( 'filter', action, arguments );\n\t\t},\n\t\tremoveAction: function( action, tag ) {\n\t\t\tgform.removeHook( 'action', action, tag );\n\t\t},\n\t\tremoveFilter: function( action, priority, tag ) {\n\t\t\tgform.removeHook( 'filter', action, priority, tag );\n\t\t},\n\t\taddHook: function( hookType, action, callable, priority, tag ) {\n\t\t\tif ( undefined == gform.hooks[hookType][action] ) {\n\t\t\t\tgform.hooks[hookType][action] = [];\n\t\t\t}\n\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\tif ( undefined == tag ) {\n\t\t\t\ttag = action + '_' + hooks.length;\n\t\t\t}\n\t\t\tif( priority == undefined ){\n\t\t\t\tpriority = 10;\n\t\t\t}\n\n\t\t\tgform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );\n\t\t},\n\t\tdoHook: function( hookType, action, args ) {\n\n\t\t\t\/\/ splice args from object into array and remove first index which is the hook name\n\t\t\targs = Array.prototype.slice.call(args, 1);\n\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action], hook;\n\t\t\t\t\/\/sort by priority\n\t\t\t\thooks.sort(function(a,b){return a[\"priority\"]-b[\"priority\"]});\n\n\t\t\t\thooks.forEach( function( hookItem ) {\n\t\t\t\t\thook = hookItem.callable;\n\n\t\t\t\t\tif(typeof hook != 'function')\n\t\t\t\t\t\thook = window[hook];\n\t\t\t\t\tif ( 'action' == hookType ) {\n\t\t\t\t\t\thook.apply(null, args);\n\t\t\t\t\t} else {\n\t\t\t\t\t\targs[0] = hook.apply(null, args);\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\tif ( 'filter'==hookType ) {\n\t\t\t\treturn args[0];\n\t\t\t}\n\t\t},\n\t\tremoveHook: function( hookType, action, priority, tag ) {\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\t\thooks = hooks.filter( function(hook, index, arr) {\n\t\t\t\t\tvar removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);\n\t\t\t\t\treturn !removeHook;\n\t\t\t\t} );\n\t\t\t\tgform.hooks[hookType][action] = hooks;\n\t\t\t}\n\t\t}\n\t};\n}\n\n\/* ]]> *\/\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gform_legacy_markup_wrapper gform-theme--no-framework' data-form-theme='legacy' data-form-index='0' id='gform_wrapper_4' ><form method='post' enctype='multipart\/form-data'  id='gform_4'  action='\/online\/wp-json\/wp\/v2\/pages\/65' data-formid='4' novalidate>\n                        <div class='gform-body gform_body'><ul id='gform_fields_4' class='gform_fields top_label form_sublabel_below description_below validation_below'><li id=\"field_4_6\" class=\"gfield gfield--type-text gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_4_6'>Name<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_6' id='input_4_6' type='text' value='' class='medium'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_4_7\" class=\"gfield gfield--type-text gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_4_7'>Email<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_7' id='input_4_7' type='text' value='' class='medium'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_4_3\" class=\"gfield gfield--type-select field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_4_3'>Your Chinese Level<\/label><div class='ginput_container ginput_container_select'><select name='input_3' id='input_4_3' class='medium gfield_select'     aria-invalid=\"false\" ><option value='None' >None<\/option><option value='Beginner' >Beginner<\/option><option value='Intermediate' >Intermediate<\/option><option value='Advanced' >Advanced<\/option><option value='Fluent' >Fluent<\/option><\/select><\/div><\/li><\/ul><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_4' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Book Your Free Trial Class Now'  \/> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_4' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_4' id='gform_theme_4' value='legacy' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_4' id='gform_style_settings_4' value='[]' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_4' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='4' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='USD' value='5GatkXGDmKRAHYx0T2qXAgscIMl1kKU5Dus\/O3VJUH5RLCNCFob0CvoVJpx+YqIEZ7z4Km9315mkYRzVsflIGBmYXUKu8uInw4E0wdokWSgI6eA=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_4' value='WyJbXSIsIjA4MGY0NzZmNzc1ODcwNzM2YTI3NzIzMmI4ZWUxOWQwIl0=' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_4' id='gform_target_page_number_4' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_4' id='gform_source_page_number_4' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n gform.initializeOnLoaded( function() {gformInitSpinner( 4, 'https:\/\/www.blcuchinese.com\/online\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_4').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_4');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_4').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){jQuery('#gform_wrapper_4').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_4').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_4').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/  }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_4').val();gformInitSpinner( 4, 'https:\/\/www.blcuchinese.com\/online\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [4, current_page]);window['gf_submitting_4'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_4').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [4]);window['gf_submitting_4'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_4').text());}else{jQuery('#gform_4').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"4\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_4\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_4\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_4\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 4, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} ); \n\/* ]]> *\/\n<\/script>\n\n<\/div><div class=\"clear\"><\/div>\n<hr size=\"3\" \/>\n<div class=\"threecol column\">\n<h2><a title=\"Courses\" href=\"http:\/\/www.blcuchinese.com\/online\/about\/online-chinese-courses\/\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-212\" src=\"http:\/\/www.blcuchinese.com\/online\/wp-content\/uploads\/2013\/09\/benefit.png\" alt=\"benefit\" width=\"40\" height=\"40\" \/><\/a>\u00a0Personalised<\/h2>\n<p>Tailor-made classes to suit your Chinese level and learning goals<\/p>\n<\/div>\n<div class=\"threecol column\">\n<h2><a title=\"BLCU\" href=\"http:\/\/www.blcuchinese.com\/online\/about\/blcu\/\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-212\" src=\"http:\/\/www.blcuchinese.com\/online\/wp-content\/uploads\/2013\/09\/benefit.png\" alt=\"benefit\" width=\"40\" height=\"40\" \/><\/a>\u00a0High Quality<\/h2>\n<p>1 on 1 structured classes with professional BLCU teachers with over 7 years training<\/p>\n<\/div>\n<div class=\"threecol column\">\n<h2><a title=\"Plans\" href=\"http:\/\/www.blcuchinese.com\/online\/apply-now\/\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-212\" src=\"http:\/\/www.blcuchinese.com\/online\/wp-content\/uploads\/2013\/09\/benefit.png\" alt=\"benefit\" width=\"40\" height=\"40\" \/><\/a>\u00a0Affordable<\/h2>\n<p>Classes from\u00a0100 RMB ($17.7 USD) per class<\/p>\n<\/div>\n<div class=\"threecol column last\">\n<h2><a title=\"Classes\" href=\"http:\/\/www.blcuchinese.com\/online\/about\/online-chinese-classes\/\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-212\" src=\"http:\/\/www.blcuchinese.com\/online\/wp-content\/uploads\/2013\/09\/benefit.png\" alt=\"benefit\" width=\"40\" height=\"40\" \/><\/a> Flexible<\/h2>\n<p>Take Chinese classes whenever or wherever suits you, all you need is an internet connection<br \/>\n<\/div><div class=\"clear\"><\/div>\n<h2>Testimonials<\/h2>\n<div class=\"testimonials\"><article class=\"testimonial\">\n\t\t<div class=\"testimonial-image\">\n\t\t<div class=\"bubble-image\">\n\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"175\" height=\"191\" src=\"https:\/\/www.blcuchinese.com\/online\/wp-content\/uploads\/2013\/09\/Emory-BLCU-Chinese-Online3.png\" class=\"attachment-small size-small wp-post-image\" alt=\"\" \/>\t\t\t<div class=\"substrate\"><img decoding=\"async\" src=\"https:\/\/www.blcuchinese.com\/online\/wp-content\/themes\/academy\/images\/bgs\/testimonial_bg.png\" alt=\"\" \/><\/div>\n\t\t<\/div>\n\t<\/div>\n\t<div class=\"testimonial-text\">\n\t\t\t<p><em>&#8220;I have told many of my American fiends that Beijing Language and Culture University is a very good school. The Online Chinese program is excellent and fun!&#8221;<\/em><\/p>\n\t\t<h6 class=\"author nomargin\">William Emery Matthews, USA<\/h6>\n\t<\/div>\n<\/article><article class=\"testimonial\">\n\t\t<div class=\"testimonial-image\">\n\t\t<div class=\"bubble-image\">\n\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"201\" height=\"219\" src=\"https:\/\/www.blcuchinese.com\/online\/wp-content\/uploads\/2013\/09\/130458718782901.jpg\" class=\"attachment-small size-small wp-post-image\" alt=\"\" \/>\t\t\t<div class=\"substrate\"><img decoding=\"async\" src=\"https:\/\/www.blcuchinese.com\/online\/wp-content\/themes\/academy\/images\/bgs\/testimonial_bg.png\" alt=\"\" \/><\/div>\n\t\t<\/div>\n\t<\/div>\n\t<div class=\"testimonial-text\">\n\t\t\t<p><em>&#8220;I do like this method of learning.\u00a0 It is as if you are visiting China every week, the teachers are very motivated. The on-line sessions do help a lot. This is the best way to activate your knowledge.&#8221;<\/em><\/p>\n\t\t<h6 class=\"author nomargin\">Jouri Grigorenko, Netherlands<\/h6>\n\t<\/div>\n<\/article><article class=\"testimonial\">\n\t\t<div class=\"testimonial-image\">\n\t\t<div class=\"bubble-image\">\n\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"195\" height=\"208\" src=\"https:\/\/www.blcuchinese.com\/online\/wp-content\/uploads\/2013\/09\/130458769675901.jpg\" class=\"attachment-small size-small wp-post-image\" alt=\"\" \/>\t\t\t<div class=\"substrate\"><img decoding=\"async\" src=\"https:\/\/www.blcuchinese.com\/online\/wp-content\/themes\/academy\/images\/bgs\/testimonial_bg.png\" alt=\"\" \/><\/div>\n\t\t<\/div>\n\t<\/div>\n\t<div class=\"testimonial-text\">\n\t\t\t<p><em>&#8220;I would suggest to anyone who wants to learn Chinese and hasn\u2019t got any time to lose, to attend the online course of BLCU&#8221;<\/em><\/p>\n\t\t<h6 class=\"author nomargin\">Carlo Boselli, Italy<\/h6>\n\t<\/div>\n<\/article><\/div>\n<a href=\"http:\/\/www.blcuchinese.com\/online\/trial-class\/\" target=\"_self\" class=\"element-button large primary\">Book Your Free Trial Class Now<\/a>\n<div align=\"center\">\n<div style=\"text-align: center;\"><\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Testimonials<\/p>\n","protected":false},"author":1,"featured_media":396,"parent":0,"menu_order":0,"comment_status":"open","ping_status":"open","template":"","meta":{"footnotes":""},"class_list":["post-65","page","type-page","status-publish","has-post-thumbnail","hentry"],"_links":{"self":[{"href":"https:\/\/www.blcuchinese.com\/online\/wp-json\/wp\/v2\/pages\/65","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.blcuchinese.com\/online\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.blcuchinese.com\/online\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.blcuchinese.com\/online\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.blcuchinese.com\/online\/wp-json\/wp\/v2\/comments?post=65"}],"version-history":[{"count":113,"href":"https:\/\/www.blcuchinese.com\/online\/wp-json\/wp\/v2\/pages\/65\/revisions"}],"predecessor-version":[{"id":913,"href":"https:\/\/www.blcuchinese.com\/online\/wp-json\/wp\/v2\/pages\/65\/revisions\/913"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.blcuchinese.com\/online\/wp-json\/wp\/v2\/media\/396"}],"wp:attachment":[{"href":"https:\/\/www.blcuchinese.com\/online\/wp-json\/wp\/v2\/media?parent=65"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}