Check if a string txt is a title text or not. A title text is one which has all the words in the text start with an upper case letter.
check_title("A Mind Boggling Achievement") ➞ True
check_title("A Simple Python Program!") ➞ True
check_title("Water is transparent") ➞ False
N/A