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