how to get a font google fonts code example
Example: add google font
CSS
@import url(https://fonts.googleapis.com/css?family=Roboto);
HTML
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto"/>
body{
font-family: "Roboto";
}