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