Answers for "add google font in html css to all"

CSS
0

how to use google fonts in css

<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Sofia">
<style>
body {
  font-family: "Sofia", sans-serif;
}
</style>
</head>
Posted by: Guest on February-10-2022

Browse Popular Code Answers by Language