Horje
how to add bold in css Code Example
css bold text
.text {
	font-weight: bold;
}
css bold
/* Keyword values */
font-weight: normal;
font-weight: bold;

/* Keyword values relative to the parent */
font-weight: lighter;
font-weight: bolder;

/* Numeric keyword values */
font-weight: 100;
font-weight: 200;
font-weight: 300;
font-weight: 400;// normal
font-weight: 500;
font-weight: 600;
font-weight: 700;// bold
font-weight: 800;
font-weight: 900;

/* Global values */
font-weight: inherit;
font-weight: initial;
font-weight: revert;
font-weight: unset;
css bold text
we can set text bold using css property named 'font-weight'
Syntax:
selector{
  font-weight: bold;
}
how to add bold in css
.selector {
	font-weight: bold;
}




Css

Related
css make background image repeat vertically Code Example css make background image repeat vertically Code Example
adding a perfect responsive background image Code Example adding a perfect responsive background image Code Example
css get the image to the center and to make it relative to the width of the parent. Code Example css get the image to the center and to make it relative to the width of the parent. Code Example
remove all css styles from element Code Example remove all css styles from element Code Example
horizontally align button Code Example horizontally align button Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10