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