identify which of the following is a tag or an attribute: hr‚ br ‚ p‚ aling‚ text‚ noshade
Answers
tags - hr, br, p, align
hope this helps ;) ;)
Answer:
The correct answer to the given question is:
attributes - text, noshade
tags - hr, br, p, align
Explanation:
The HTML text attribute is used to define a one-line text field on a web page. If you set the text value to the type attribute of the input element, as shown in the following syntax:
noshade attribute is a Boolean value used to specify a solid horizontal line instead of a shaded line.
HTML <hr> tags are used to create horizontal lines. This is also known as a horizontal rule in HTML.
The <br? tags are useful for writing addresses and poems. It inserts a single line break. The tag is an empty tag. That is, there is no end tag.
The <p> tag defines a paragraph. The browser automatically inserts a blank line before and after each element.
#SPJ2