For example, to save your document on the desktop, you would scroll up and click Desktop in the left-hand sidebar.

For example, to name your webpage’s file “hello”, you would type in hello. html.

If Notepad inadvertently closes or you have to come back to your document later, you can right-click the HTML file and then click Edit in the resulting drop-down menu.

Each HTML element has an opening and closing tag. When we add a new element, such as the “” tag to open the head, we need to add a closing tag as well. For the head, this is the “” tag.

Each HTML element has an opening and closing tag. When we add a new element, such as the “” tag to open the head, we need to add a closing tag as well. For the head, this is the “” tag.

You can use tags “

” through “
” to create smaller heading text. “

” is the largest heading text, and “

” is the smallest heading text.

You can add an additional “
” tag after the first one to create additional line spaces in between your paragraphs. . You do not need to add a closing tag for line breaks.

If the image is not online, but is saved to your computer, you can use the location it is saved to instead of the web address. For example,

You can also add a link to an email address, or use an image as a link, instead of text.

If you want to keep editing your HTML document, return to Notepad and make the necessary edits, making sure to save your changes often. You can adjust the webpage’s background color, set a background image, or change the font color by using CSS in conjunction with your HTML document.