making a comment ( <!–comment–> )
While creating your pages, scripting, adding reciprocal links and etc… It is common use of inserting comments in your source code to simply make it easier for you to latter look at your code and remember what it was all about. you’ll thank this simple tag when you write a huge page filled with scripts, codes, texts, forms and etc…’cause it makes the editing way easier to find. The <!– bla bla bla –> tag is not shown in people’s browser viewing your site. So I would recommand you using it as often as you fit needed.
Ex:
| Source code | Browser |
| <html>
<!–head of my page–> <head></head> <!–body of my page–> <body> <!–this is my first paragraph–> <p>Hello world!</p> <!–remember closing all opened tags–> </body> </html>
|
Hello world! |
You can comment your code but you don’t need like I did above to comment everything.



Sun, Sep 28, 2008
HTML