Popular External Fonts (Google Fonts and Others)
How to Use External Fonts (Example with Google Fonts)
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">body {
font-family: 'Roboto', sans-serif;
}
h1 {
font-family: 'Roboto', sans-serif;
font-weight: 700; /* Bold version of Roboto */
}
p {
font-family: 'Roboto', sans-serif;
font-weight: 400; /* Regular version of Roboto */
}Last updated