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