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