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