This project demonstrates how to deploy and host a static website using Azure Storage Static Website feature.
The website is deployed through an Azure Storage Account and exposed via a public endpoint generated by Azure.
This lab illustrates a simple and cost-efficient way to host static content directly from Azure cloud infrastructure.
- Azure Resource Group
- Azure Storage Account
- Azure Blob Storage
- Azure Static Website Hosting
The static website is hosted inside Azure Storage using the $web container.
User
|
Internet
|
Azure Storage Account
|
Static Website ($web container)
|
index.html
- Create a Resource Group
rg-static-website-lab
- Create a Storage Account
staticwebsitejovan
- Enable Static Website Hosting
Settings → Static website → Enable
Configuration:
Index document: index.html
Error document: 404.html
- Upload website files to the $web container
index.html
- Access the website via the Primary Endpoint
Example:
https://staticwebsitejovan.z6.web.core.windows.net
The deployed page displays a simple static HTML page hosted entirely through Azure Storage.
To avoid unnecessary costs, delete the resource group after completing the lab.
Resource Group → Delete → rg-static-website-lab
This will remove all deployed resources.
Through this project the following concepts were practiced:
- Azure Storage fundamentals
- Static website hosting using Azure Blob Storage
- Cloud resource organization with Resource Groups
- Deploying and exposing web content through Azure infrastructure





