From 9721d820b7b95b30616c8fbc6aa275dfd855dcca Mon Sep 17 00:00:00 2001 From: Vivek Rajpoot Date: Sun, 31 Dec 2023 23:32:00 +0530 Subject: [PATCH] fix(curriculum): adding missing backticks for Odin project HTML Foundations Question C (#52825) Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com> --- .../top-learn-html-foundations/html-foundations-question-c.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/16-the-odin-project/top-learn-html-foundations/html-foundations-question-c.md b/curriculum/challenges/english/16-the-odin-project/top-learn-html-foundations/html-foundations-question-c.md index 3bc07f42b26..d754ed6ec14 100644 --- a/curriculum/challenges/english/16-the-odin-project/top-learn-html-foundations/html-foundations-question-c.md +++ b/curriculum/challenges/english/16-the-odin-project/top-learn-html-foundations/html-foundations-question-c.md @@ -15,7 +15,7 @@ You’re 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