HOME C C++ PYTHON JAVA HTML CSS JAVASCRIPT BOOTSTRAP JQUERY REACT PHP SQL AJAX JSON DATA SCIENCE AI

HTML Editors

HTML editor: An editor is a software application that helps you create and edit HTML code, which is the markup language used to create web pages. Get ideas for the Step by Step HTML editor from CodeLines.

Learn HTML coding using Notepad or TextEdit :-

  • Learn HTML Using Notepad or TextEdit. ...
  • Step 1: Open Notepad (PC) ...
  • Step 1: Open TextEdit (Mac) ...
  • Step 2: Write Some HTML. ...
  • Step 3: Save the HTML Page. ...
  • Step 4: View the HTML Page in Your Browser. ...
Display HTML Code

Write Some HTML

Write or copy the following HTML code into Notepad:

Example

   
    
<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1> <p>My first paragraph.</p>
</body> </html>
You can click on above box to edit the code and run again.

Output

My First Heading

My first paragraph.