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