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