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