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