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