Creating an Azure website
Azure provides many ways for you to create rich web and mobile applications in the cloud. You could set up your VMs, install IIS, and add your web application. If your application needs to store data, you can create a separate SQL Server VM (or use Azure's SQL Database PaaS offering).
A simpler way is to create an Azure App Service. An Azure App Services enables you to build, deploy, and manage rich websites and web applications. You can use frameworks such as .NET, Node.js, PHP, and Python in these applications and any database software that's appropriate for your needs. You can also take advantage of its DevOps capabilities, such as continuous deployment from Azure DevOps, GitHub, Docker Hub, and other sources, package management, staging environments, custom domain, and TLS/SSL certificates.
An Azure App Service web app can be a simple static HTML site or a rich multi-tier application providing both web and mobile platforms. You have...