-[x] Install dotnet SDK
-[x] Instal C# for VS Code
-[x] Create a new web project with
dotnet new webapi -o AppName
-[x] Make a HTTP request to get the html.
-[x] Install HtmlAgilityPack and its CssSelector package to select elements using querySelector.
- https://www.nuget.org/packages/HtmlAgilityPack/
- https://www.nuget.org/packages/HtmlAgilityPack.CssSelectors.NetCore/
- https://html-agility-pack.net/
-[x] Select all characters with QuerySelectorAll() method.