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