fix(curriculum): adding missing backticks for Odin project HTML Foundations Question C (#52825)

Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com>
This commit is contained in:
Vivek Rajpoot
2023-12-31 23:32:00 +05:30
committed by GitHub
parent 607db0d6c6
commit 9721d820b7

View File

@@ -15,7 +15,7 @@ Youre probably already familiar with a lot of different types of files, for e
To let the computer know you want to create an HTML file, you need to append the filename with the `.html` extension as you have done when creating the `index.html` file.
It is worth noting that you named your HTML file index. You should always name the HTML file that will contain the homepage of your websites `index.html`. This is because web servers will by default look for an index.html page when users land on your websites - and not having one will cause big problems.
It is worth noting that you named your HTML file index. You should always name the HTML file that will contain the homepage of your websites `index.html`. This is because web servers will by default look for an `index.html` page when users land on your websites - and not having one will cause big problems.
## The DOCTYPE