HTML editors are software that allow to create, edit, and manage HTML files.
Text-based HTML editors are essentially simple text editors such as Notepad (PC) or TextEdit (Mac).
A simple text editor is best to learn HTML.
Follow the steps below to create your first web page with Notepad or TextEdit.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>Welcome to my first webpage Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
You can do practise with our online editor, or you can test the code.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>Welcome to my first webpage</h1>
<p>My first paragraph.</p>
</body>
</html>
Try It ยป