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