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