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