How to Use Web Safe Fonts in CSS
How to Use Web Safe Fonts in CSS
body {
font-family: "Helvetica", "Arial", sans-serif;
}h1 {
font-family: "Georgia", "Times New Roman", serif;
}
p {
font-family: "Verdana", "Geneva", sans-serif;
}
code {
font-family: "Courier New", "Lucida Console", monospace;
}Why Fallbacks are Important in CSS Font Stacks
Last updated