Lesson 4: How to Edit HTML Pages on Your Local Setup?

Lesson 4: How to edit HTML pages on your local setup?

  1. How to edit an HTML file?
  2. Best code editors for your PC

How to edit an HTML file?

There’s an undeniable benefit in any HTML template, it can be edited without any additional software.

Still, this benefit will require from you some understanding of HTML markup, otherwise you’ll be lost in a huge range of code lines desperately trying to tweak something. Still, I hope that you’re quite HTML savvy and will be able to find a necessary line to tweak.

In any case you can use the Chrome Inspector tool to find the necessary line. Here’s an example, this is the main page of Intense website template.

Let’s say we need to find the line of code where we can alter the Welcome to Intense text.

  1. Highlight the necessary line
  2. Right-click it and choose Inspect

  3. DevTools window will open, and the line you need to edit will be highlighted.
  4. Then you can open the index.html file in your favorite text editor and tweak this line.
  5. Also you can use the search tool to find the same line
  6. Why would you need to use DevTool to find the line?

It’s possible that there are more than two similar lines of code, this method will help you find the right one.


Best code editors for your PC

To help you choose the most convenient IDE you can refer to this article, there you find feature set comparison of top 7 code editors those include:

  1. Atom
  2. Brackets
  3. Visual Studio Code
  4. Notepad++
  5. Ultra Edit
  6. Sublime Text
  7. Jetbrains Webstorm

How to edit Intense theme using any code editor you can learn in its documentation.


This tutorial is a part of the "How to Build and Maintain an HTML5 Website?" free course.