Advertisements
Advertisements
प्रश्न
Write the equivalent inline CSS for the following HTML tag.
<img src="me.jpg" height=20 width=30>
उत्तर
<img src="me.jpg" style="height: 20px; width: 30px;">
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 difference between <dt> and <dd> tags.
Which of the following options is an INVALID attribute of <font> tag in HTML?
What is the difference between <br> tag and <p> tag in the context of HTML? Illustrate using suitable examples.
Write the HTML code to design the web page as shown below, considering the specifications that follow. You can write the code for any four specifications out of the given six specifications.
Home Service
We are happy to provide you with all the help at your residence. Special discount offers from (1st May 2022 to 30th June 2022). Please contact us for the following services: Maid/Servant (Cleaning) Maid/Servant (Cooking) Driver Queries: [email protected] |
Specifications:
- The background color of the page should be yellow and the text for the page should be in blue color.
- Heading 'Homes Services' should be the first level of heading.
- The image named 'service.png' should be placed on the web page.
- The font size for the paragraph and the list of services should be 4 and the Font face should be Verdana. Superscript tags should be used wherever required.
- The services (as shown in the above web page) should be written with the help of the unordered list.
- The bottom-most line of 'Queries: help@ homeservices.com" should be a link to open the user's default mail client to send queries to the mentioned email id.
Write a suitable HTML statement to display the following text on a webpage in appropriate subscript and superscript form:
CO2
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.