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