Tools and Editors for writing HTML codes
Web pages can be created and modified by using professional HTML editors.
However Notepad and any text editor can be used to write HTML codes
Web pages can be created and modified by using professional HTML editors.However, for learning HTML we recommend a modern text editor Visual Studio Code or Sublime Text for making it easy for us to write code .
We believe in that using a modern text editor is a good way to learn HTML because it saves our lots of time.
Some text editors:
There is a long list of text editors available , but we recommend you to
use Visual Studio Code for writing all your HTML codes.
Why we are recommending you to use Visual Studio Code ?
- Easy setup.
- Intelligent Code editor.
- Can be used for some other languages too.
- Reduces the need for typing.
- Exist already added code snippet.
- Code formatting.
- Live server for real time changes.
- and much more exciting features making it awesome editor..
here's how visual Studio Code looks like :
You can go to the given link and download and install the editor, it's easy
to download and install...
If you have already installed the editor we recommend you to simply copy
and paste the codes given below and save it by naming it as index.html and
also try to open the saved index.html file
example codes are given below:
Example
<!DOCTYPE html>
<html>
<head>
<title>Hello World</title>
</head>
<body>
<h1> Hello World !!</h1>
</body>
</html>
when you run the file it will look like :
Happy coding...☺





Post a Comment