Answers for "add google font in html css"

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
-2

use google fonts in css

@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');
Posted by: Guest on May-02-2020

Browse Popular Code Answers by Language