The </form> I found at the very end of the source code, right before </body> and </html>. So maybe the whole page is one giant form?
seems very likely

your 3rd code box contains a text input with name of "ctl00$PlaceHolderMain$pageTitleSection$ctl02$urlNameTextBox"
note the names and ids may be auto generated, so not usable in code
that is each time the page is loaded they may be different

So the first thing the macro needs to do is cut out the first paragraph or the word doc (which is the title) and save this as a variable. Then once I have this I can paste this variable into the 'title' box.
vb Code:
  1. myvar = documents("somedoc.doc").paragraphs(1)
if the code is in the same document, you can use the thisdocument object
vb Code:
  1. myvar = thisdocument.paragraphs(1)