From e3c4eaf0c2393321f225a8d419645110b5f913d4 Mon Sep 17 00:00:00 2001 From: Steve Smith Date: Thu, 3 Nov 2016 23:37:21 -0400 Subject: [PATCH] Update static-files.md --- content/asp.net/getting-started/static-files.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/asp.net/getting-started/static-files.md b/content/asp.net/getting-started/static-files.md index 7899fa1..814d46e 100644 --- a/content/asp.net/getting-started/static-files.md +++ b/content/asp.net/getting-started/static-files.md @@ -51,7 +51,7 @@ namespace ConsoleApplication } ``` -With this in place, you should be able to run the app and see the favicon image displayed. If it's not displayed, you can also verify it's being served by requesting it directly (e.g. http://localhost:5000/favicon.ico). +With this in place, you should be able to run the app and see the favicon image displayed. If it's not displayed, you can also verify it's being served by requesting it directly (e.g. http://localhost:5000/favicon.ico). Note the " icon to the left of the URL in the browser tab below: ![Browser with favicon](images/browser-favicon.png) @@ -61,4 +61,4 @@ You can add other kinds of files to the *wwwroot* folder. The most common are HT ## Next Steps -Try adding a static HTML file to the *wwwroot* folder. You should be able to request it by name. Add support for default files and name your HTML file *defult.html*. Confirm that the file is served when you navigate to the root of your app. \ No newline at end of file +Try adding a static HTML file to the *wwwroot* folder. You should be able to request it by name. Add support for default files and name your HTML file *defult.html*. Confirm that the file is served when you navigate to the root of your app.