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