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