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