Follow the four steps below to create your first web page with Notepad or Notepad++.
Step 1: Open Notepad or Notepad++
Open Notepad or Notepad++ in Windows 98,Windows xp,Windows 7,Windows 8,Windows 10 or later:
Open the Start Screen (the window symbol at the bottom left on your screen). Type Notepad or Notepad++.
Open Notepad in Windows 7 or earlier:
Click Start (bottom left on your screen). Click All Programs. Click Accessories. Click Notepad or Notepad++.
STEP 2: WRITE SOME HTML
Write or copy Code some HTML into Notepad or Notepad++.
<!DOCTYPE html>
<html>
<head>
<title>MY First Page Title</title>
</head>
<body>
<h1>MY First Heading. </h1>
<p>MY First Paragraph.</p>
</body>
</html>
<html>
<head>
<title>MY First Page Title</title>
</head>
<body>
<h1>MY First Heading. </h1>
<p>MY First Paragraph.</p>
</body>
</html>