Chunk 1 | Building the front end

Create and deploy a cloud-hosted website at a live URL that anyone can access

(Steps 2-6)

  1. Create a website: Create a website in HTML
  2. Style the website: Add style with CSS
  3. Host the Website: Publish the website on a static website service in the cloud
  4. Secure with HTTPS: Secure the website URL with HTTPS
  5. Custom Domain: Publish the URL on a domain you own yourself

[Security Mod] Protect the DNS configuration from “man in the middle attacks”


Alt Text
The front-end as configured in Azure

Both Azure Storage and AWS S3 can be used to host a static website. This means that instead of using a traditional web server, you can store and serve your website files direct from a storage service. This is good for a website that does not need to be rendered when the user uses the website, hence the title “static website”.

You must create the storage service and enable the Static Website Hosting feature to do this. Then, you can upload your static website files.

Once your files are uploaded, you can access your website using the storage URL. Features like custom domain names, SSL/TLS encryption, and access control can be used to secure and customize your website’s hosting environment.

Last modified July 21, 2024: update (e2ae86c)