HTML tutorial-What is HTML? |
||||||||||||||
What is HTML?To develop your web pages with HTML you only need an editor such as Notepad or Dreamweaver. In this tutorial, I prefer to use Notepad because it comes with Windows already. Your First HTML Document Now open Notepad and write the following code: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"> <html> <head> <!—HTML tutorial(this is the comment that is not to be display , just to explain the thing--> <title>My first web page</title> </head> <body> Welcome to my first page! </body> </html> Then save the file as firstpage.html. To display the page, you can double-click the file or open the web browser like Firefox or IE and starting to type the full path of the firstpage.html file. |
||||||||||||||
|
||||||||||||||