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