Design Website in Word Doc file is a great solution for beginners as it does not need write HTML code and is very fast to realize what you want. After design the website in Word Doc file, the next step may be converting the file from Doc to HTML.
Spire.Doc which is a professional .NET Word component can help us easily use
C# convert files from Doc to HTML.
C# Doc to HTML via Spire.Doc: private void button1_Click(object sender, EventArgs e)
{
//Create word document
Document document = new Document();
document.LoadFromFile(@"..\..\..\..\..\..\Data\FindAndReplace.doc"

;
//Save doc file.
document.SaveToFile("Sample.html", FileFormat.Html);
//Launching the MS Word file.
WordDocViewer("Sample.html"

;
}
private void WordDocViewer(string fileName)
{
try
{
System.Diagnostics.Process.Start(fileName);
}
catch { }
}