Create a folder somewhere on your local drive. In that folder, create a new Text File using Notepad. Paste the following inside the text file.
Code:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>MyPageTitle</title>
</head>
<body>
<img src="FileName.jpg" width="800" height="400" alt="File Not Found"/>
</body>
</html>
Save your new text file and give it a name. Now, change the file extension of your text file to HTML.
When you need to edit your new HTML file, right click it and choose Open With > Notepad.
Another thing you could do is place all of your images in a subfolder. So, in your new folder, create another folder and name it something like 'images'. Then, the path (src) to your images would look something like ...
Code:
src="images/FileName.jpg"
If you want to get real fancy, you could use Bootstrap and create responsive web pages. You can download the necessary supporting files for free. The HTML in your web pages will look a little different because they need to understand there are folders with supporting files. Just like you might have a folder named images, you would want to reference assets that support the responsive web page.
http://getbootstrap.com/