Use on the webTotal Use [ 3360 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/448d3b24f3a399e8f2db2a082dac68af?family=Goudita+Sans+SF+Italic" 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/448d3b24f3a399e8f2db2a082dac68af?family=Goudita+Sans+SF+Italic);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Goudita Sans SF Italic";
src: url("https://db.onlinewebfonts.com/t/448d3b24f3a399e8f2db2a082dac68af.eot");
src: url("https://db.onlinewebfonts.com/t/448d3b24f3a399e8f2db2a082dac68af.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/448d3b24f3a399e8f2db2a082dac68af.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/448d3b24f3a399e8f2db2a082dac68af.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/448d3b24f3a399e8f2db2a082dac68af.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/448d3b24f3a399e8f2db2a082dac68af.svg#Goudita Sans SF Italic")format("svg");
}
2CSS rules to specify fonts
font-family: "Goudita Sans SF Italic";