Hi there
In this post I’m going over on how to create a static HTML web app in Azure
You’ll need:
- Free azure subscription
- An Azure Resource (I’m using “MyBlog“)
- Filezila ftp client (to download default html file from the new azure web app and to modify it, upload it back and see the result)
- basic knowledge of HTML language
Steps to follow
-
- go to your azure subscription
- on home screen find the azure resource groups and select you resource group (i.e.: MyBlog)

-
- select the Azure Resource and click on “+” add (to add the web app resource)

-
- create the new web app



-
- select the new web app (under Overview)
- copy the URL link https://htmlapp001.azurewebsites.net
- test the new web app main url https://htmlapp001.azurewebsites.net/(click on it , open new tab on the browser)

- accessing the web app ftp
- go to the Deployment Center blade and select FTP (scroll down and click on it then click on Dashboard)
- FTPS Endpoint:
- Username:
- Password:


- go to the Deployment Center blade and select FTP (scroll down and click on it then click on Dashboard)
- FTP access and html file changes
- configure the filezila ftp client accordingly
-
- go on file \ site manager \ select the FTP site you’ve configured
- click connect

-
- you should see the hostingstart.html file in there
- download the file
- rename it to newhostingstart.html

- edit it and change the following
- locate “Microsoft Azure App Service – Welcome” change to “Microsoft Azure App Service – Welcome by Thiago Beier”
- locate “Hey, App Service Developers!” change to “Hey, App Service by Thiago Beier!“
- save it
- upload the file back to the web app root path
- go back to the site url https://htmlapp001.azurewebsites.net/
- add the new html file name at the end of the complete url https://htmlapp001.azurewebsites.net/newhostingstart.html and see the changes you’ve made

-
- configure the filezila ftp client accordingly
Fell free to explore the other blades such as:
- Custom Domains
- Backups
- Configuration \ Default Documents
- Development tools \ Console
Quick view on the Development tools \ Console

thanks,