HTML First Example
HTML First Example
HTML First Example
To code the first HTML web page, we need some necessary tools.
1. Text Editor
-
The text editor is used to write the HTML code.
-
There are many text editors used by web developers for different operating systems.
Windows: Notepad++
Linux: Notepadqq
Ubuntu: Notepadqq
Macintosh: Coda
2. Internet Browser
-
An internet browser is used to show the HTML web page on the screen.
-
There are many varieties of Web Browser available to show the web page on the screen.
Example:
<html>
<head>
<title>HTML Tutorial</title>
</head>
<body>
This is the my First Web page of PooriPadhai Website.
</body>
</html>
Example Explanation:
In the above, we have shown an example in which we are using tags like html, head, title, body tags(elements) which are necessary for every web page.
Refer HTML Structure for more details.
Run the code to see the effect.
After writing above code we should save this as FileName.html and Open this file in any Browser (like Internet Explorer, Google Chrome, Mozilla Firefox etc.)