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