You shouldn't be using Word or any other word processor to write HTML files as most do not produce clean code. Copy and paste what you've got into something like Notepad and save that as an HTML file.
The other thing is that it sounds like you are running the file locally - that is a file hosted on your computer and then run in a browser. What you are running into is probably something called CORS - Cross-Origin Resource Sharing. That's a set of rules in browsers designed to protect your computer from malicious attacks. Google Charts code run locally will trigger the protection because the browser knows it's running a local file but then it's trying to download files from another domain, even if it is Google's.
Most browsers have a developer mode. Press F12 and you will probably see the messages saying exactly why the chart is not displaying.
Try uploading the file to a web server. Failing that you can test it by pasting the code into something like CodePen or JSFiddle. You can even go any of the W3Shools tutorials, remove their code and copy and paste your own, then click Run to test it.
CodePen, JSFiddle and the like are more flexible but this is supposed to be a CSS tutorial in W3Schools but it's running the example from
https://developers.google.com/chart/interactive/docs/quick_start