Use on the webTotal Use [ 4825 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/cb79e94c1b123194e210f4627f2f03bc?family=Giustina+Kelani" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/cb79e94c1b123194e210f4627f2f03bc?family=Giustina+Kelani);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Giustina Kelani";
src: url("https://db.onlinewebfonts.com/t/cb79e94c1b123194e210f4627f2f03bc.eot");
src: url("https://db.onlinewebfonts.com/t/cb79e94c1b123194e210f4627f2f03bc.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/cb79e94c1b123194e210f4627f2f03bc.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/cb79e94c1b123194e210f4627f2f03bc.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/cb79e94c1b123194e210f4627f2f03bc.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/cb79e94c1b123194e210f4627f2f03bc.svg#Giustina Kelani")format("svg");
}
2CSS rules to specify fonts
font-family: "Giustina Kelani";