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