Advertisements
Advertisements
प्रश्न
Write HTML code to design the content of the web page in the form of lists as shown below:
STREAM WISE CAREER OPTIONS
|
उत्तर
<html>
<body>
STREAM WISE CAREER OPTIONS
<ul type="square">
<li>Science</li>
<ol type="a">
<li>Engineering</li>
<li>Medical</li>
<li>Research</li>
</ol>
</li>
<li>Commerce</li>
<li>Humanities</li>
</ul>
</body></html>
Notes
1.5 Marks for correct usage of <ul> tag along with <li>.
1.5 Marks for correct usage of <ol> tag along with <li>.
APPEARS IN
संबंधित प्रश्न
Write the difference between alink and vlink.
Write an HTML statement to illustrate the usage of alink and vlink attributes.
Write the equivalent inline CSS for the following HTML tag.
<body bgcolor="green">
Which of the following options is an INVALID attribute of <font> tag in HTML?
The default starting value for an ordered list in HTML is ______.
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.
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.
In HTML, <dl>, <dd>, and <dt> tags are used to create ______.