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