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