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