Skip to main content

Marquee Tag and paragraph Tag

  Content of the post

1)Marquee tag
2)Paragraph tag
3)Fieldset tag
4)Legend tag

                 Marquee Tag

Marquee tag is one of the best tag in html. It is used to make the display attractive. 
By using this tag we can set a movement in text
By using some attributes like behavior we can change the movement of the text   

<Body>
<Marquee behavior="alternate">Hello World</Marquee>
</Body>

             Paragraph Tag


Paragraph tag is used to tell browser that we are going to write paragraphs. This tag starts by <p> and end by </p>.

<Body>
<p>Taj mahal is situated in Agra. </p>
</Body>

Fieldset Tag and Legend Tag
 

These tags are  used together make a border around your page and add a subtitle at the top-left of the border. 

 

Comments

Post a Comment

Popular posts from this blog

Basic of HTML

                        HTML Html is a Hypertext Markup language ,which is used to develop web applications ,Android applications,etc. Browsers do not understand our communication language they have their own language in this blog we will learn one of them language  There are many languages which browsers support.Some of them are :-          DIFFERENT LANGUAGES

How to insert image ,video,audio in html ?

 How to insert videos audios and images in websites ? These are the most important tags because these tags are used from small websites to large marketing websites. And by adding a video to website we can increase the views probability by 300% so learn properly how to add videos audios and images to website                      Image Tag Image Tag is a tag by which we can insert images to html by the <image> tag ,this tag does not contain an end tag and we give some attributes like (src ) attribute in which we define the path of the image ,(width) and (height) attribute in which we give width and height of the image. <Body> <img src="gallery/taj.jpg"width="200px"height="50px"> </Body> In src attribute we first give the name of file in which it is stored and then we give a forward slash (/) to separate then we give the image name with its extension.

What are Tags and Attributes ?

The most important things you should know Today we will cover what are Tags and Attributes and how we use them in html