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