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