answersLogoWhite

0


Best Answer

The hr tag is the horizontal rule tag. It puts a line across the page.





The img tag displays an image in a page. If you wanted to display an image called photo.jpg, you could do it like this:

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Explain Hr and Img tag in HTML tags?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Why use HTML tags?

Tags are the basic rules in HTML like if you wanted to add a dotted list you can use the ul tag and you can add images with the img tag and you can make the image a link by nesting the img inside a link tag but i believe the most useful tag is the div tag


What are the tags for the start and end of the visible page content?

The 'HTML' tags go around an entire HTML document, with the exception of the 'DOCTYPE' tag, whch is always on the first line. For more information, go here: http://www.w3schools.com/tags/tag_html.asp


What are two-sided tags?

A two-sided tag is one that has an opening tag and a closing tag, such as <a> and </a>. This is in contrast to other tags, like <br> and <img>, which do not need closing tags.


How do you create img tag in HTML and graphics and attributes?

The HTML <img /> tag displays graphics on the page. Here is an example of an img tag: <img src="image.jpg" width="100" height="100" border="0" align="center" alt="My Image"/>.


What is invalid for img tag n HTML?

center


What is the general syntax for two sided HTML tags?

For two-sided HTML tags, the general syntax is the tag name, any attributes, the tags content, and then the closing tag. Like so:Tag ContentSome attributes are optional. Others are required. It depends entirely on which tag you're using.


What is definition of singular tag?

There doesn't seem to be an official definition but a singular tag is a tag that is not used as a pair of tags. XHTML validating examples of singular tags are: <br /> <hr /> <img /> Note that the <img /> tag will require additional attributes to display an image.


Why must you close one sided tags in HTML?

1 sided: <meta /> <img /> <input /> 2 sided: <p> <b> <font> <style>


How many attributes does the BR tag have in HTML?

The BR tag has only the core tags, which all HTML tags have. These are id, class, style and title.


Which symbol is used for a closing tag in html?

The front slash is added to a tag, before the tagname, to indicate that it is a closing tag: <html> is an opening tag. </html> is a closing tag. <title> is an opening tag. </title> is a closing tag.


How To Embed Images In Text?

You can embed an image in HTML via IMAGE tag. It can be written as <img src="image-source"/>


HTML contains 2 tags what are they?

HTML contains many more than 2 tags. Most tags come in a set of 1 opening and 1 closing tag. For example, <html> and </html>.