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