Open Notepad. If you are using a Windows computer it's already on your computer since it is part of Windows. Click Start, All Programs, Accessories, Notepad. Copy the pink text below and paste it into Notepad.
In case you need a refresher on that, click the following link: How to Copy, Cut and Paste
From Notepad's Menubar, choose File, Save As then enter this in the File Name box:
c:\lesson1.html
that should save the file on your C: drive with the name lesson1.html
Next, click this link: c:\lesson1.html
or this link file:///c:/lesson1.html
which should open the file and display it as a webpage in the default browser on
your computer.
(Your computer already knows to use your default web browser to open and display files which end with .htm or .html it will open the file in your default web browser for you)
Now, scroll down below the pink text to continue the lesson.
<html>
Hello World!
html stands for hypertext markup language.
html is the language of the Web.
You don't need to know all of it. So just start with the basic stuff to get a
webpage
together.
Webpages contain text and images. Text, for the most part. For most pages
text is the
most important part.
The text is marked up by using tags to identify portions which are to be
interpreted by
the browser according to the particular tag that is used. One would be to make
some text
stand out by making it bold.
Tags are usually paired but not always. The ending tag has a slash added. Don't
forget to
add the ending tag or things will look funny.
Tags are not case-sensitive, they can be upper-case or lower-case.