Week 12

Tuesday - Spacing Between Words

When writing HTML, you can insert multiple spaces between characters or words or sentences, but in the Web browser it will render as only a single space. If you actually want that space to be more significant, you will have to use other controls. Some of them exist in CSS (which I am not covering here today), but the more common ones are done using simple HTML, where it is seen as an extension of other content-structuring code like paragraph tags. Your primary options are as follows:

The most significant advantage to using HTML to achieve spacing rather than CSS is that if someone copies this text and pastes it elsewhere, HTML spaces will persist but CSS spacing will disappear.

There isn't any good reference on W3Schools for this stuff, but you can read some thoughts posted by Harvard professor Tom Fine on the subject of sentence spacing in HTML, if you are still confused on the subject.