As the site will be static is it possible to deploy all my HMTL files
and images into a simple blob storage container and create a CNAME in
our DNS record to point the sub-domain to this location?
Yes, that is possible, and personally I think it is one of the cheapest solution for a static website. I have setup several websites in Azure Blob the way you have described.
Please note that each file in Azure Blob must be inside a container. The container name becomes a part of the file URL. Say, your blob DNS is yourblob.com, container name is foo and file name is bar.html then the URL to the file is http://yourblob.com/foo/bar.html
It is also possible to create default container $root which name will not be visible in URL. Say, for the same blob DNS as above, container $root and page name page.html the page URL will be as follows: http://yourblob.url/page.html
Although having a static website in Azure Blob seems to be very simple and cheap, there is one drawback of that solution though. As you have no control on file downloads, someone can download large amount of data from your website, which will affect your bills.
Example: download of 1MB every 3 seconds will generate about 1GB of bandwidth per hour. Continues download would give you about $2.28 per day of additional cost (~ $70 per month). With that in mind suddenly the cheap solution is not that cheap.
And I have seen couple question about that issue on SO.
I hope that will help.