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