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