Answers for "css italic bold"

CSS
72

css bold text

.text {
	font-weight: bold;
}
Posted by: Guest on February-22-2020
10

how bold text in css

p.normal {
  font-weight: normal;
}

p.thick {
  font-weight: bold;
}

p.thicker {
  font-weight: 900;
}
Posted by: Guest on November-18-2020
9

css bold text

we can set text bold using css property named 'font-weight'
Syntax:
selector{
  font-weight: bold;
}
Posted by: Guest on April-16-2020
1

italic in css

style= "font-style: italic;"
Posted by: Guest on June-29-2020
0

css how to make text italic

<style>
#italic{
  font-style: italic;
  } </style> <p id="italic">This is my italic text. :)</p>
Posted by: Guest on August-17-2020

Browse Popular Code Answers by Language