HTML Basic Examples
In this Tutorial we will show some basic HTML examples.
HTML Editors
Learn HTML Using Notepad or Notepad ++
Step 1: Open Notepad or Notepad ++ (PC)
A Simple HTML Document
Step 2: Write Some HTML
You Can Write Or Copy The Following HTML Code in Your Notepad:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>