A family of Microsoft word processing software products for creating web, email, and print documents.
There's no built-in option for this, but a simple macro can do it.
- Open Word and open the macro editor (Tools > Macros > Visual Basic Editor, or Alt+F11).
- In the Project panel on the left, open the icon for Normal, open the Microsoft Word Objects icon under it, and double-click the ThisDocument icon under that.
- Copy the macro code from below, and paste it into the large empty area on the right.
- Click File > Save, or Ctrl+S, to save the Normal.dot template.
- Close the macro editor. All existing documents will now open in Web view.
Private Sub Document_Open()
ActiveWindow.View.Type = wdWebView
End Sub