For some html attributes, I can use quotes around the values, or not:
For example, I can do
<table colspan='1'></table>
Or
<table colspan=1></table>
Is there any difference between these two ways? Which is the more conventional way of doing things?