How do you make the text bold?
Select one:
A. Style:bold
B. Font:b
C. Font-weight:bold
D. None कोई नहीं
Answers
Answer:
Please mark me as the brainliest I need it urgently.
Explanation:
Select the text that you want to make bold, and do one of the following:
Move your pointer to the Mini toolbar above your selection and click Bold .
Click Bold in the Font group on the Home tab.
Type the keyboard shortcut: CTRL+B.
Answer:
The Correct answer is option C
Explanation:
1. Using the font-weight Property in Head Section
For font-weight, you specify the number that determines the boldness of the font: normal, bold, bolder, lighter, or multiples of 100 from 100 to 900, with 400 equivalent to normal. Bolder and lighter are relative to the parent element.
Syntax for font-weight
font-weight: normal|bold|bolder|lighter|number|initial|inherit;
How to Specify font-weights to Convert Text in Bold?
font-weight: 700;
font-weight: bold; /* same as 700 */
font-weight: normal; /* same as 400 */
font-weight: lighter; /* relative to the parent element */
CSS for Class in Head Section
<style>
.bold_text {
font-weight: bold;
}
</style>
HTML
<body>
<p class="bold_text">This full paragraph is bold.</p>
</body>
2. Using the <b> Element
Put the <b> element between a paragraph element to make a certain part of paragraph bold.
HTML
<p>Some part of the <b>paragraph is bold</b>.</p>
3. Using the <strong> Element
Make the text bold of a specific part of the paragraph using the <strong> element.
HTML
<p>Some part of the paragraph is bold <strong>using the strong element</strong>.</p>
Learn more about the information
- https://brainly.in/question/9054720
- https://brainly.in/question/3810558