With CreateObject("InternetExplorer.Application") .Visible = True .Navigate "www.cygnus-x1.net/links/lcars/epsd-TOS1.php" While .Busy Or .ReadyState <> 4&: DoEvents: Wend For Each elmBlockElement In .Document.getElementsByTagName("blockquote") If elmBlockElement.PreviousSibling.LastChild.innerText = "Synopsis" Then With elmBlockElement.PreviousSibling Selection.TypeText "Title:" & .getElementsByTagName("strong")(0).innerText & vbCrLf Selection.TypeText "Synopsis:" & vbCrLf & elmBlockElement.innerText & vbCrLf Selection.TypeText "------------------------------" & vbCrLf & vbCrLf End With End If Next .Quit End With End Sub