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