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