Tuesday, December 18, 2018

Starting of web program.

<STARTING A PROGRAM>

<HTML>
<HEAD>
<TITLE>
       DEMO PROJECT FIRST.
</TITLE>
</HEAD>
<BODY>
 <!--HEADLINE TAG-->
<h1>MY FIRST WEB</h1>
<h2>MY FIRST WEB</h2>
<h3>MY FIRST WEB</h3>
<h4>MY FIRST WEB</h4>
<h5>MY FIRST WEB</h5>
<h6>MY FIRST WEB</h6>
<!--PARAGRAPH TAG-->
<p>I love INDIA. I AM PROUD.</p>
<pre>
        I
    LOVE
      MY
   INDIA.
I AM PROUD.
</pre>
</BODY>
</HTML>
.........................................................................
.........................................................................
OUTPUT:-

sk.
.........................................................................
WORK OF TAGS:-
  • <p>=Paragraph tag. Automatic line break when end of line.
  • <pre>=Paragraph tag. static tag as it is print which we written in this paragraph tag.
  • <h1>=It is big heading tag.
  • <h2>=It is smaller then h1.
  • <h3>=It is smaller then h2.
  • <h4>=It is smaller then h3.
  • <h5>=It is smaller then h4.
  • <h6>=It is smaller then h5.

No comments:

Post a Comment

Internal Javascripts

Internal Javascripts :    The script code can be written directly into the HTML document. script code is placed in header of the docume...