Add the word "menu" in the header for the smart phone dimension

When the theme adapts for a smartphone, it adds a graphical menu button with 3 horizontal lines. While I understand this is the menu, it might not be so obvious to others. How can I add some sort of text next to that button, when the theme is adapting to smartphone dimensions?

This can be done by adding “Menu” name somewhere in this code which you can find in header.php

   <button type="button" class="btn navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
		                <span class="sr-only">Toggle navigation</span>
		                <span class="icon-bar"></span>
		                <span class="icon-bar"></span>
		                <span class="icon-bar"></span>
		            </button>

Some other tweaks might be required to make it look good but this will definitely work and customizations are up to you.

Awesome! Thanks