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