I'm sure this has come up before (It seems pretty simple), but I can't seem to find it after a half hour of searches on the forum.

I'm trying to create an html file with a table. I need to write the line:
Code:
<TABLE width="100%">
However whenever I try to put that in a WriteLine function, it doesn't like the quotes around the 100%.
VB Code:
  1. Dim makehtml As StreamWriter = new StreamWriter(path)
  2. makehtml.WriteLine("<TABLE width="100%">")

How do I get those quotes to appear in the html file?