Advertisements
Advertisements
प्रश्न
Which of the following options is an INVALID attribute of <font> tag in HTML?
विकल्प
face
width
size
color
उत्तर
Width
Explanation:
Size, colour, and face are the three characteristics of the font tag that allow you to customize your fonts. Use the <font> tag to easily modify any font property on your webpage at any moment. Until you end the paragraph with the </font> tag, the text after this one will still be modified.
APPEARS IN
संबंधित प्रश्न
The HTML tag used to make the text italics is ______.
Assertion (A): In HTML, Tags written in lowercase letters or uppercase letters are treated as the same.
Reason (R): HTML is a case sensitive language.
Write the equivalent inline CSS for the following HTML tag.
<body bgcolor="green">
Write the equivalent inline CSS for the following HTML tag.
<img src="me.jpg" height=20 width=30>
Assertion (A): <br> is a container tag.
Reason: HTML elements that have both opening and closing tags are considered container tags.
Write the difference between <ol> and <ul> tags in HTML. Also, write suitable examples of each to illustrate the difference.
What is the difference between <br> tag and <p> tag in the context of HTML? Illustrate using suitable examples.
Link, vlink, alink are attributes of ______ tag.
Write a suitable HTML statement to display the following text on a webpage in appropriate subscript and superscript form:
X2
Ronaldo, a web designer in a start-up company, wants to give headings on a webpage through <h1> tag. Additionally, he wants to implement the following styles on all the <h1> tags of the same webpage in one go.
- Color-blue
- Background color-yellow
- border of the heading - 2px in red
He is not able to implement the above-mentioned additional styles <h1> of tag through regular HTML code. Suggest him a way out and also help him in writing the code for the same.