Page 104 - iPro_trackGPT_V5_Class6
P. 104

The <HR> Tag

                  The <HR> tag is used when you want to divide your web page into different sections. It is also
                  used when you want to draw a line between two paragraphs. It is an empty tag and does not
                  need an end tag. It gives a horizontal ruler (line) on the page, and then the next element will be
                  shown in a new line after the ruler.

                  <!DOCTYPE html>
                  <html>

                  <head>
                      <title>HR Tag Example</title>

                  </head>
                  <body>

                      <p>This is the first paragraph of the tag. </p>
                      <hr>

                      <p>This is the second paragraph of the tag.</p>
                      <hr>

                  </body>
                  </html>


















                  The Bold Tag

                  The Bold tag is written as <b>. This tag is used to give a bold effect to your text. You need to tell

                  the web browser when to start using the bold effect and where to stop using the bold effect. It
                  is a container tag and used in pairs as <b> and </b>.


                   102     TrackGPT iPRO (V5.0)-VI
   99   100   101   102   103   104   105   106   107   108   109