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