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