Lots of ways to do that. Here's one.
Use cURL or wget to download the webpage. YOu can SHELL to it in QB64.
Use open for binary to grab the html contents of that page, and place it as one gigantic string in QB64.
Do an instr() search for <title> and </title> to grab the title from the title tag part of the giant string.
Pete
Same approach with cURL...
This was new to me, so for fun, I looked into using POWERSHELL! Minor caution, it makes or overwrites a file in whatever folder you run this in, called: mypsfile.html. If for some weird reason you named a file that in your local QB64 folder, it would get over-written by running this code.