Computer Science, asked by lhachick1293, 1 year ago

What is the correct css syntax for making all the

elements bold?

Answers

Answered by Anonymous
0
body {
    font-wight: bold;
}

You need above CSS only to make all text bold in your web page.
Answered by karthikeyanrishabh
2

Answer:

CSS font-weight property

Explanation:

body {

font-weight: bold;

}

Similar questions