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