What is the correct css syntax for making all the
elements bold?
Answers
Answered by
0
body {
font-wight: bold;
}
You need above CSS only to make all text bold in your web page.
font-wight: bold;
}
You need above CSS only to make all text bold in your web page.
Answered by
2
Answer:
CSS font-weight property
Explanation:
body {
font-weight: bold;
}
Similar questions