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