font css code example
Example 1: css bold text
.text {
font-weight: bold;
}
Example 2: css text bold
font-weight: bold;
Example 3: font family css
font-family: "Comic Sans MS", cursive, sans-serif;
Add More Fonts Here : - https://fonts.google.com/
Example 4: css font
@font-face {
font-family: "Name of the font";
src: url("your/path/to/the.font");
}
p{
font-family: "Ubuntu";
}
Example 5: sans serif font family css
<style>
.sansserif {
font-family: Arial, Helvetica, sans-serif;
}
</style>
Example 6: css font
p {
font: italic small-caps bold 12px/30px Georgia, serif;
}