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