Why not? this code it`s work ..
VB Code:
  1. Private Sub Form_Load()
  2.     WebBrowser1.Navigate "about:" & _
  3.        "<html>" & vbCrLf & _
  4.        "<head>" & vbCrLf & _
  5.        "</head>" & vbCrLf & _
  6.        "<body>" & vbCrLf & _
  7.        "<p><a target=" & Chr$(34) & "_blank" & Chr$(34) & "href=" & Chr$(34) & _
  8.        "http://www.vbforums.com" & Chr$(34) & ">Visit My Site</a></p>" & vbCrLf & _
  9.        "</body>" & vbCrLf & _
  10.        "</html>"
  11. ' or load your ad page
  12. End Sub
Where can i find a tutorial to learn to do transform the html code to vb code ?