You should use index.html as the file name for the base HTML page on the website. When a user navigates to qsconference.com, they are automatically redirected to the index.html file. When building other pages, you can also create folders within the main project structure with the name of the page you want to create (i.e. /sponsors) and have an html file within that called index.html so that when users go to qsconference.com/sponsors, they will be directed to the sponsors index.html page.
Example file structure
.
| index.html
| main.css
|
+---speakers
| index.html
|
\---sponsors
index.html
You should use
index.htmlas the file name for the base HTML page on the website. When a user navigates to qsconference.com, they are automatically redirected to theindex.htmlfile. When building other pages, you can also create folders within the main project structure with the name of the page you want to create (i.e./sponsors) and have an html file within that calledindex.htmlso that when users go toqsconference.com/sponsors, they will be directed to the sponsorsindex.htmlpage.Example file structure