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