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