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