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