See Lifecycle FAQ - Internet Explorer and Microsoft Edge. It says Internet Explorer is a component of the Windows operating system. In other words, IE is not going away. That article also says Internet Explorer 11 will continue receiving security updates and technical support for the lifecycle of the version of Windows on which it is installed. In other words, IE will always be a part of Windows 10 and previous versions of Windows.
If the purpose if a HTA is to use HTML as a UI then there are alternatives with better support.
I do not know if there is a VBScript version of Single Page Applications (SPAs) but that might work. Otherwise, a SPA using JavaScript might work.
An ASP.Net Core application can host itself in a browser. An ASP.Net Core application can use Blazor that provides Single Page Applications (SPAs), so that might be similar to a HTA. If you go that route then prepare to be confused by the similarity of names; Blazor uses Razor, like other ASP.Net Core applications use. You can fiddle with Blazor in BlazorFiddle.
Something even newer is .Net MAUI. You can develop a .Net MAUI application that uses Razor for the UI. Since they would be a desktop application they would (like a HTA) have more access to resources, such as files, than an application in a browser. You probably do not need your applications to execute in Android, iOS or macOS (Linux later) but there would be much more support of .Net MAUI applications.
The only advantages I can think of of HTAs is that they can be developed using a plain text editor and they have more access to resources outside the browser.