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