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