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