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