English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
If you want to do a good job, you must first sharpen your tools; a good HTML editor can make you more efficient in creating HTML web pages, achieving the effect of twice the work with half the effort. Below are several commonly used editors introduced to you.
You can use professional HTML editors to edit HTML, and the basic tutorial recommends several commonly used editors:
Notepad++ https://notepad-plus.en.softonic.com/
Editplus https://www.editplus.com/
VS Code:https://code.visualstudio.com/
Sublime Text:http://www.sublimetext.com/
You can download the corresponding software from the official website of the above software and install it according to the steps.
Next, we will demonstrate how to use the Editplus tool to create HTML files. The operation steps for the other three editing tools are similar.
EditPlus is a Windows editor for handling text, HTML, and programming languages produced by Sangil Kim (ES-A compact but powerful Windows editor for handling text, HTML, and programming languages produced by Computing. It is also a very useful HTML editor, and you can even set it up as a simple IDE for languages such as C, Java, Php, etc. by setting user tools.
Steps 1: Create New HTML File
After the Editplus installation is complete, select "File (W)":->Create New File (N) ", and enter the following code in the new file:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>Basic Tutorial(oldtoolbag.com)</title>
</head>
<body>
<h1>My first web title</h1>
<p>My first web paragraph.</p>
</body>
</html>
Steps 2: Save as HTML file
Then select "File (W)":->Save As Copy (W) ", and the filename is w3codebox.html:
When you save the HTML file, you can use either .htm or .html extension. There is no difference between them, it is completely up to your preference. Here it is recommended to use the .html suffix.
Save this file in an easy-to-remember folder, such as w3codebox
Steps 3Run this HTML file in the browser:
Then right-click on the filename in the editor and select 'Open in Default Browser', here choose Firefox browser (you can also choose other browsers):
The running result is similar to the following:
This is a simple guide on how to use editplus editor to create HTML web pages. Hope it is helpful to you. If you like it, please share or collect it. Remember our domain (oldtoolbag.com).