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