Advertisements
Advertisements
प्रश्न
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.
उत्तर
Ronaldo should use CSS to implement extra styles in <h1> tag.
HTML Code:
<html>
<head>
<style>
h1 {color: blue;background-color:yellow;border: 2px solid red}
</style>
</head>
<body>
<h1>Welcome</h1>
</body>
</html>
<style> tag should be placed inside <head> tag of a webpage.
Notes
½ Mark for the correct suggestion of usage of CSS.
2 Marks for correct CSS code and ½ Mark for using the internal style sheet.
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 an HTML statement to illustrate the usage of alink and vlink attributes.
Assertion (A): <br> is a container tag.
Reason: HTML elements that have both opening and closing tags are considered container tags.
Illustrate the use of the radio button input type on an HTML form with an appropriate code and the corresponding output.
What is the difference between <br> tag and <p> tag in the context of HTML? Illustrate using suitable examples.
Events |
Write the HTML code to design the above-shown web page titled 'Events', considering the specifications given below. You can write the code for any four specifications out of the given six specifications.
Specifications:
- The background color of the page should be cyan, and the font face for the page should be Arial.
- Heading 'Events' should be the first level of heading.
- The font size for the paragraph and the list of products should be 5.
- The schedule (as shown on the above web page) should be written with the help of the numbered list. Superscript tags should be used wherever required.
- The bottom-most lines of 'For any queries ...' and 'Phone: .... ' should be on hold.
- The contact email [email protected] should be a link to open the user's default mail client to send queries to the mentioned email id.
Link, vlink, alink are attributes of ______ tag.
In HTML, <dl>, <dd>, and <dt> tags are used to create ______.
Mention any two purposes of using comments while designing a HTML webpage.