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