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