Cheat sheet - https://htmlcheatsheet.com/
All web pages are displayed using elements of HTML (Hyper Text Mark Up Language). They use tags to separate the page into sections and insert a range of media elements.
<!DOCTYPE html>
<html>
<body>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</body>
</html>
File Management
Each new website should have the following folder structure.
New Folder - Website Name
Image Folder
You may add other folders as required like CSS
By keeping all your files organised, you will reduce the chances of errors occurring on the site
Creating your First Page
Open a new Notepad Document and save it in your website folder as index.html. Select all files. This will create an HTML document.
Copy and Paste the following code (tags) into the Notepad document.
<!DOCTYPE html>
<html>
<head>
<title>My First Web Page</title>
</head>
<body>
<h1>Home Page</h1>
<p>My first paragraph.</p>
</body>
</html>
Repeat these steps each time you create a new web page.
To open as a text document, right click on file and select open with Notepad
You will need to save the document each time you make a change for it to reflect changes on the browser. Press F5 to refresh.