How to override page title in your theme, after all modules have done their jobs.
Source code viewer
/** * Implements theme_preprocess_html(). */ function THEME_preprocess_html(&$vars) { // This variable includes the title, write here anything you want. $vars['head_title'] = 'Browse Tutorials'; }Programming Language: PHP