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