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