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