{"id":758,"date":"2016-10-07T04:10:12","date_gmt":"2016-10-07T04:10:12","guid":{"rendered":"http:\/\/www.blcuchinese.com\/online\/?page_id=758"},"modified":"2016-10-07T04:14:37","modified_gmt":"2016-10-07T04:14:37","slug":"home-2","status":"publish","type":"page","link":"https:\/\/www.blcuchinese.com\/online\/","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\" alt=\"BLCU1\" src=\"http:\/\/www.blcuchinese.com\/online\/wp-content\/uploads\/2013\/10\/BLCU11-300x225.jpg\" width=\"300\" height=\"225\" \/><\/p>\n<\/div> <div class=\"sixcol column last\">\n<h1><strong>Book Your Free Trial Class Now<\/strong><\/h1>\n<script>\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<\/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\/758' 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'><span class='gform-field-label__text'>Name<\/span><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'><span class='gform-field-label__text'>Email<\/span><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'><span class='gform-field-label__text'>Your Chinese Level<\/span><\/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'> <button type='submit' id='gform_submit_button_4' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' >Book Your Free Trial Class Now<\/button> \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='x+\/zKFldzr4\/Rif+3h5lTOdswupPs8xVe+vImg4I4MxrCFX7XOO+IXx1uBSZ\/SCwROiqxgaBisgucYGoZsFuLzjpnK0ZynS4wVoDl2\/WjmjSzdQ=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_4' value='WyJ7XCJnZm9ybV9zdWJtaXNzaW9uX21ldGhvZFwiOltcIjY3YTIwZDZiY2Q1MGRjODJjMWIxYzk0NTdhNjRmYzI1XCIsXCI3MDE1YzY4ZDQ4YmU1NjUwZmVkYTdmN2VkOGFjZDc2ZFwiXSxcImdmb3JtX3RoZW1lXCI6XCJlM2ZjNzU3NDI3NTQ1ZmUwYTJiMTllNGY2MGM2ZDRlNVwiLFwiZ2Zvcm1fc3R5bGVfc2V0dGluZ3NcIjpcImE5YzEzOGQ2NmMyZjMxYzI0YmJiZWVjZjM2Mzc5M2E2XCIsXCJmb3JtX2lkXCI6XCIwODBmOTM0OTQxNTk0ZDA2MjRhNDFiMTkzYTI1MjY2MVwiLFwidXJsXCI6XCI5NjY2MzM0MWI2NzRjZTE2NjZkN2Q2MDI1M2JhNmFmNlwiLFwic3RhdGVfdGltZXN0YW1wXCI6XCJhY2U4MjVlYTkxNDhjYzYyYTEyMWMwYjBkOTRkMTJlZVwifSIsImFiY2U1NjQ2OTYyMjk1OTcxZjZlODc4ZDczNzcyM2I5IiwxNzkwMDM4Nzc5XQ==' \/>\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>\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\" alt=\"benefit\" src=\"http:\/\/www.blcuchinese.com\/online\/wp-content\/uploads\/2013\/09\/benefit.png\" 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\" alt=\"benefit\" src=\"http:\/\/www.blcuchinese.com\/online\/wp-content\/uploads\/2013\/09\/benefit.png\" 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\" alt=\"benefit\" src=\"http:\/\/www.blcuchinese.com\/online\/wp-content\/uploads\/2013\/09\/benefit.png\" width=\"40\" height=\"40\" \/><\/a>\u00a0Affordable<\/h2>\n<p>Classes start at 100 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\" alt=\"benefit\" src=\"http:\/\/www.blcuchinese.com\/online\/wp-content\/uploads\/2013\/09\/benefit.png\" 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><br \/>\n<div class=\"sixcol column\">\n<h2>Teachers<\/h2>\n\n<table id=\"tablepress-1\" class=\"tablepress tablepress-id-1\">\n<tbody>\n<tr class=\"row-1\">\n\t<td class=\"column-1\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/www.blcuchinese.com\/online\/wp-content\/uploads\/2013\/09\/Zhao.png\" alt=\"\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-330\" \/><\/td><td class=\"column-2\">Ms Zhao studied Masters Curriculum and Teaching Theory at Beijing Language and Culture University and has taught Chinese in China and abroad in Korea. She is a specialist in online education and has been published in leading journals. She has also written a number of Chinese learning text books. Ms Zhao teaches Chinese Comprehension, Chinese Speaking, Chinese Reading and Chinese Listening Online classes.<\/td>\n<\/tr>\n<tr class=\"row-2\">\n\t<td class=\"column-1\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/www.blcuchinese.com\/online\/wp-content\/uploads\/2013\/09\/Penny-150x150.png\" alt=\"\" width=\"150\" height=\"150\" class=\"alignnone size-thumbnail wp-image-332\" srcset=\"https:\/\/www.blcuchinese.com\/online\/wp-content\/uploads\/2013\/09\/Penny-150x150.png 150w, https:\/\/www.blcuchinese.com\/online\/wp-content\/uploads\/2013\/09\/Penny-90x90.png 90w, https:\/\/www.blcuchinese.com\/online\/wp-content\/uploads\/2013\/09\/Penny.png 166w\" sizes=\"auto, (max-width: 150px) 100vw, 150px\" \/><\/td><td class=\"column-2\">Penny received her Bachelor\u2019s in Chinese Language and Literature from Communication University of China (CUC), and studied her Masters of Teaching Chinese as a Second Language (TCSL) at Beijing Foreign Studies University (BFSU).<br \/>\n<br \/>\nPenny has more than four years\u2019 Chinese teaching experience, including two years in Beijing Foreign Studies University (BFSU). <\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<!-- #tablepress-1 from cache -->\n<h2><span style=\"font-size: 1.5em;\"><\/div><\/span><\/h2>\n<div class=\"sixcol column last\">\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=\"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><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><\/div><\/div><div class=\"clear\"><\/div>\n<p>&nbsp;<\/p>\n<div align=\"center\">\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 style=\"text-align: center;\"><\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp;<\/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-758","page","type-page","status-publish","has-post-thumbnail","hentry"],"_links":{"self":[{"href":"https:\/\/www.blcuchinese.com\/online\/wp-json\/wp\/v2\/pages\/758","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=758"}],"version-history":[{"count":1,"href":"https:\/\/www.blcuchinese.com\/online\/wp-json\/wp\/v2\/pages\/758\/revisions"}],"predecessor-version":[{"id":759,"href":"https:\/\/www.blcuchinese.com\/online\/wp-json\/wp\/v2\/pages\/758\/revisions\/759"}],"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=758"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}