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