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