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