Web fonts let you use custom typefaces beyond the limited set of system fonts. Google Fonts is the most popular free web font service.
Using Google Fonts
- Go to
fonts.google.com - Select the font and weights you need
- Add the
<link>tag in your HTML head - Use the font-family in your CSS
CSS Font Properties
font-family— the typeface to usefont-weight— thickness:normal(400),bold(700), or numeric 100-900font-style— style:normal,italic,obliquefont-size— size of the text (px, em, rem, %)font— shorthand for all font properties
Font Fallbacks
Always provide fallback fonts: font-family: "Inter", Arial, sans-serif;