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