HTML5 Editors for Linux
In Linux / Unix : vi Editor or Cat to create a .html file
Creating a file using “$cat” command in Linux / Unix type open source operating systems.
To go to Terminal “$” prompt enter the following command
$cat > testhtml.html
and then press enter
write HTML basic code here save and exit.
Open file on your browser and check you will see welcome message or written on sample page ..
Creating a file using “$vi” editor command in Linux / Unix type open source operating systems.
To go to Terminal “$” prompt enter the following command
$vi testhtml.html
and then press enter
write
HTML5 basic code here save and exit.
Open testhtml.html file on your browser and check you will see welcome message or written on sample page ..
That’s It..