Answers for "css set font"

CSS
7

css change text size

p {
	font-size: 150% /*px, cm, in, etc.*/; 
}
Posted by: Guest on May-14-2020
0

define font css

body {
  font: normal small-caps normal 16px/1.4 Georgia;
}

/* is the same as:

body {
  font-family: Georgia;
  line-height: 1.4;
  font-weight: normal;
  font-stretch: normal;
  font-variant: small-caps;
  font-size: 16px;
}
 */
Posted by: Guest on December-16-2020
0

set another font in css

font-family: Here is your font
Posted by: Guest on June-10-2021
0

which css property is used to change font

.para1{
   font-family: "Times New Roman", Times, serif;
}
Posted by: Guest on August-13-2021

Browse Popular Code Answers by Language