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