Advertisements
Advertisements
प्रश्न
Briefly explain the attributes of <hr> tag.
उत्तर
The <hr> tag having four attributes viz. size, width, no shade and color. These attributes are used to set size, width, 3D appearance and color to the horizontal line respectively.
The general syntax of <hr> tag with attributes:
<hr size=valuewidth=value noshade, color=color_name/code>
- Size:
The thickness of the horizontal line can be changed with the size attribute. The size is given in terms of pixels. - Width:
The width attribute specifies the horizontal width of the rule line. The default rule is drawn across the full width of the browser. The value of the width attribute may be the exact width of the rule in pixel or a certain percentage. - No shade:
The default view of a horizontal rule line is 3D. So, no need to specify the term “no shade” as an attribute with <hr> tag. If we specify the attribute “no shade” turn off 3D view, turns on 2D view. No shade is a Boolean type attribute. - Color:
The horizontal line is displayed in gray color by default. The color attribute is used to change is default color to the desired color.
Example:
Ruler with size 9 pixels, 50% width, 2D, in Green color
<hr size = 9 width = 50% noshade color=Green>
APPEARS IN
संबंधित प्रश्न
Write HTML Code for the following table.
A list block can be defined inside another list is:
What are the types of list in HTML?
Difference between <UL> and <OL> tags.
Write HTML code to produce the following table:
A | B |
C |
Write an HTML code the show the following text:
MODERN ATOMIC THEORY The findings of modern atomic theory are given as follows:
|
Explain the attributes used with <table> tag in HTML.
Explain the types of list with suitable HTML code.
Write HTML code to create the following table:
Arif works in a school as a web designer. He has been assigned the task of uploading the calendar of holidays for the month of March. He was supposed to design an HTML table for the same.
Help him to complete the table with the right statements in the blanks.
Observe the table and attempt any four questions (out of five) given after the table.
MARCH 2023 | |||||||
DAYS | Mon | Tue | Wed | Thu | Fri | Sat | Sun |
DATES | 6 | 7 | 8 | 9 | 10 | 11 | 12 |
14 |
<html>
<head>
<title> </title>
</head>
<body>
<table>
<tr>
<td colopan = ______><!-STATEMENT-1 MARCH2023 </td>
</tr>
-------------------------------
<!-STATEMENT-2>
<th>DAYS</th>
<th>Mon</th>
<th>Tue</th>
<th>Wed</th>
<th>Thu</th>
<th>Fri</th>
<th>Sat</th>
<th>Sun</th>
______<!-STATEMENT-3>
<tr>
<td ______ = 2><! - STATEMENT- 4>
DATES </td>
<td>6</td>
<td>7</td>
<td>8</td>
<td>9</td>
<td>10</td>
<td>11</td>
<td>12</td>
</tr>
<tr>
<td></td>
<td> ______ </td><!-STATEMENT-5>
</tr>
</table>
</body>
</html>
- Write the attribute value to complete Statement -1 to achieve the output as given in the above table.
- Write the tag to complete Statement -2 to achieve the output as given in the above table.
- Write the attribute value to complete Statement -3 to achieve the output as given in the above table.
- Write the attribute name to complete Statement -4 to achieve the output as given in the above table.
- Write the appropriate answer for the blank given in Statement -5 to achieve the output as given in the above table.