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