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