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