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