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