Fourni par Blogger.
Affichage des articles dont le libellé est how to put a comment in html. Afficher tous les articles
Affichage des articles dont le libellé est how to put a comment in html. Afficher tous les articles

jeudi 15 septembre 2016

Make the Head ... How to put a comment line

Everything in HTML will go between <html>  and </html> .
There are two parts  in Html   the  head  and the body , Let's  first start with 
the Head ....
 The  head contains informations  about your file like the  title  we will see what we can  do with the Head part later in this Part.

<!DOCTYPE html> 
    <html>
             <head>
                             <title>put the title here!</title>
             </head>
     <body>
          <p> 
           //this is  a one line comment
          </p>
         </br> <!-- this  tag is  called break Tag to jump to new line-->
        <!-- To put a multiple lines comment we Do it   
              this way -->
    </body>


    </html>


 
   it's clearly shown in the image  how to set a comment , this one is for multiple lines...
    




Published: By: ERRAZKI - 06:50